-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1019 Bytes
/
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
{
"name": "guitar-hero-ku",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"webpack": "webpack --watch",
"test": "jest --watchAll",
"postinstall": "webpack"
},
"babel": {
"presets": [
"env",
"react"
]
},
"jest": {
"setupFiles": [
"./tests/setup.js"
]
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"express": "^4.16.3",
"path": "^0.12.7",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"superagent": "^4.0.0-beta.5",
"tonal": "^2.0.0",
"tonal-chord": "^2.0.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.1.4",
"nodemon": "^1.18.4"
}
}