-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "web-synth",
"version": "0.0.1",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/davidryan59/web-synth"
},
"author": {
"name": "David Ryan",
"email": "[email protected]",
"url": "https://github.com/davidryan59"
},
"devDependencies": {
"react-scripts": "^3.3.0",
"standard": "^14.3.1"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^5.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.3.0",
"tone": "^13.8.25"
},
"scripts": {
"start": "react-scripts start",
"lint": "standard",
"lint:fix": "standard --fix",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test --coverage",
"test:ci": "react-scripts test --coverage --watchAll=false",
"prepublishOnly": "npm run lint && npm run test:ci && npm run build"
},
"standard": {
"env": [ "jest" ]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}