-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "stackchat",
"version": "1.0.0",
"description": "A chatty appy chat app",
"main": "index.js",
"scripts": {
"start": "npm run start-server & npm run build-watch",
"start-server": "nodemon server -w server",
"build-watch": "webpack -w",
"seed": "node seed.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"bootstrap": "^3.3.7",
"dat.gui": "^0.7.2",
"express": "^4.14.1",
"morgan": "^1.8.1",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.0.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"sequelize": "^4.4.0",
"socket.io": "^1.7.2",
"three": "^0.96.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^1.0.0",
"nodemon": "^1.18.3",
"style-loader": "^0.21.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
}
}