-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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": "Barter",
"version": "0.0.1",
"description": "Online Trading Platform",
"author": "Jason Stinson",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=$NODE_PATH:./shared node --harmony ./src/.",
"start-prod": "npm run build & npm run start",
"dev": "npm run start & webpack-dev-server --progress --color",
"build": "NODE_ENV=production webpack --progress --color -p --config webpack.prod.config.js",
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"axios": "^0.7.0",
"babel": "^5.8.23",
"body-parser": "^1.14.1",
"compression": "^1.6.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"history": "^1.9.1",
"immutable": "^3.7.5",
"mongoose": "^4.2.4",
"object-assign": "^4.0.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-immutable-proptypes": "^1.5.0",
"react-redux": "^4.0.0",
"react-router": "1.0.0-rc3",
"redux": "^3.0.0",
"redux-thunk": "^1.0.0",
"serve-favicon": "^2.3.0",
"superagent": "^1.4.0"
},
"devDependencies": {
"babel-eslint": "^4.1.2",
"babel-loader": "^5.3.2",
"css-loader": "^0.22.0",
"eslint": "^1.4.3",
"eslint-plugin-react": "^3.3.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0"
}
}