-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.25 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": "node-slack-clone",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./server/bin/www",
"start-dev": "nodemon --debug --watch server -e js,jade ./server/bin/www",
"build-js": "webpack",
"watch-js": "webpack --watch"
},
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"express": "~4.13.1",
"jade": "~1.11.0",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0",
"react": "~0.14.3",
"react-dom": "~0.14.3",
"redux": "~3.0.4",
"react-redux": "~4.0.0",
"socket.io": "~1.3.7",
"moment": "~2.10.6",
"history": "~1.13.1",
"react-router": "~2.0",
"react-addons-linked-state-mixin": "~0.14.3",
"redux-thunk": "~1.0.2",
"shortid": "~2.2.4",
"mongoose": "~4.3.3",
"style-loader": "~0.13.0",
"css-loader": "^0.18.0",
"react-router-redux": "~4.0.0"
},
"devDependencies": {
"debug": "~2.2.0",
"babel-preset-react": "~6.3.13",
"babel-preset-es2015": "~6.3.13",
"babel-plugin-transform-class-properties": "~6.3.13",
"babel-plugin-transform-object-rest-spread": "~6.3.13",
"webpack": "~1.12.9",
"babel-core": "~6.3.21",
"babel-loader": "~6.2.0",
"less": "~2.5.3",
"less-loader": "~2.2.2"
}
}