forked from robonyong/react-split-flap-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-split-flap-display",
"version": "0.4.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"description": "React component for Split Flap (Solari) display",
"author": "Robin Yang",
"homepage": "https://robonyong.github.io/react-split-flap-display",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:robonyong/react-split-flap-display.git"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-url": "^8.0.1",
"@types/howler": "^2.2.7",
"@types/node": "^18.15.10",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"install-peers-cli": "^2.2.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rollup": "^3.20.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"styled-components": "^5.0.1"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"build-example": "npm run build && cd example && npm run build",
"prepublishOnly": "npm run build",
"setup-dev": "install-peers -f && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test": "npm run test:lint && npm run test:unit",
"pretest": "npm run build",
"test:unit": "ts-node test/test.ts",
"test:lint": "eslint ./src/**/*.ts ./src/**/*.tsx ./example/src/**/*.ts ./example/src/**/*.tsx",
"test:lint:fix": "npm run test:lint -- --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write ."
],
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.js": "eslint --cache --fix"
},
"files": [
"dist"
],
"dependencies": {
"howler": "^2.2.3"
}
}