-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.17 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "VAPOR",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rimraf static",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack && nodemon ./bin/www",
"start": "node ./bin/www",
"lint": "eslint client config models routes app.js || true"
},
"dependencies": {
"axios": "^0.7.0",
"babel-polyfill": "^6.9.1",
"babel-runtime": "^6.11.6",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.13.2",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"dotenv": "^1.2.0",
"ejs": "~2.3.3",
"express": "~4.13.1",
"express-session": "^1.11.3",
"history": "^3.0.0",
"material-ui": "^0.15.2",
"method-override": "^2.3.5",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.1.11",
"morgan": "~1.6.1",
"nodemon": "^1.9.2",
"passport": "^0.3.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"pug": "^2.0.0-beta4",
"react": "^15.2.1",
"react-dom": "15.2.1",
"react-redux": "^4.0.0",
"react-router": "^2.6.0",
"react-tap-event-plugin": "^1.0.0",
"reactify": "^1.1.1",
"redux": "^3.0.2",
"redux-thunk": "^1.0.0",
"rx": "^4.0.6",
"serve-favicon": "~2.3.0",
"superagent": "^1.4.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.0.2",
"babel-plugin-transform-react-constant-elements": "^6.0.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chokidar": "^1.2.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.10.0",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
}
}