-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 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
{
"name": "juke",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start-server & npm run build-watch",
"start-server": "nodemon --watch server -e js,html server/main.js",
"build-watch": "webpack -w",
"seed": "node ./bin/seed"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.19.0",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"morgan": "^1.9.1",
"path": "^0.12.7",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sequelize": "^4.31.2",
"volleyball": "^1.5.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"nodemon": "^1.14.11",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
}
}