-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "react-web-audio-graph",
"version": "0.1.0",
"private": true,
"homepage": "https://michalochman.github.io/react-web-audio-graph",
"dependencies": {
"@popperjs/core": "2.11.4",
"@types/audioworklet": "0.0.24",
"@types/canvas-gauges": "2.1.4",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/uuid": "8.3.4",
"ahooks": "3.1.13",
"aubiojs": "0.0.1",
"canvas-gauges": "2.1.7",
"fs": "file:./shims/fs",
"immer": "9.0.12",
"path": "file:./shims/path",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-flow-renderer": "10.0.3",
"react-popper": "2.2.5",
"react-scripts": "5.0.0",
"standardized-audio-context": "25.3.21",
"typescript": "4.6.2",
"uuid": "8.3.2",
"worklet-loader": "2.0.0"
},
"devDependencies": {
"eslint": "8.11.0",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"lint": "eslint --ext .ts,.tsx src",
"format": "prettier --write src/**/*.{ts,tsx,json,css,md}",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css}": [
"prettier --write"
],
"*.{ts,tsx,json,css,md}": "prettier --write"
}
}