forked from grandiose-potatoes/grandiose-potatoes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "grandiose-potatoes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"seed": "node server/db/seed.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --config --watch -d ./webpack.config.js",
"build:prod": "webpack --config ./webpack.config.js",
"postinstall": "cp ./node_modules/webrtc-adapter/out/adapter.js ./client/src && npm run build:prod"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.4.7",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jquery": "^3.1.0",
"mysql": "^2.11.1",
"nodemon": "^1.9.2",
"pg": "^6.0.3",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0",
"sequelize": "^3.23.4",
"shortid": "^2.2.6",
"webpack": "^1.13.1",
"webrtc-adapter": "^1.4.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1"
}
}