This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "deadcode",
"version": "0.1.0",
"private": false,
"homepage": "http://jamiebeverley.github.io/DeadCode",
"license": "GPLv3.0",
"dependencies": {
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.2.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"child_process": "^1.0.2",
"easymidi": "^1.0.3",
"fs": "^0.0.1-security",
"http": "^0.0.0",
"https": "^1.0.0",
"hydra-synth": "^1.0.25",
"lodash": "^4.17.15",
"nopt": "^4.0.1",
"prompt-promise": "^1.0.3",
"rc-slider": "^8.6.13",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-dynamic-middlewares": "^1.0.0",
"redux-logger": "^3.0.6",
"ws": "^7.2.0"
},
"scripts": {
"start": "react-scripts start",
"start-https": "HTTPS=true react-scripts start",
"backend": "nodemon --exec babel-node src/backend/server.js",
"midi": "nodemon --inspect --exec babel-node src/midi/index.js localhost 8080",
"midi-util": "nodemon --inspect --exec babel-node src/midi/utility.js localhost 8081",
"build": "react-scripts build",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.5",
"gh-pages": "^2.2.0",
"nodemon": "^2.0.1"
}
}