forked from CalamityAdam/adam.PairProject.StackChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1018 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
{
"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.4.0",
"express": "^4.16.4",
"morgan": "^1.9.1",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-router-dom": "^4.3.1",
"sequelize": "^4.42.0",
"socket.io": "^1.7.2"
},
"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.1",
"nodemon": "^1.18.9",
"style-loader": "^0.21.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
}
}