-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.53 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
{
"name": "full-auth-middleware-react",
"author": "Bryan Haakman",
"version": "0.0.1",
"description": "example use for full-auth-middleware",
"dependencies": {
"async": "~1.5.2",
"babel-preset-stage-1": "^6.13.0",
"body-parser": "^1.15.0",
"classnames": "~2.2.3",
"connect-mongo": "~1.1.0",
"connect-redis": "^3.0.2",
"cookie-parser": "~1.4.1",
"csurf": "^1.8.3",
"es6-promisify": "^4.1.0",
"express": "4.15.2",
"express-session": "~1.13.0",
"foundation-sites": "^6.2.0",
"full-auth-middleware": "0.0.*",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.6.1",
"material-ui": "^0.15.4",
"mongodb": "^2.1.11",
"mongoose": "^4.6.0",
"react": "~15.0.0",
"react-dom": "~15.0.1",
"react-router": "~2.4.0",
"socket.io": "~1.4.4"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"nodemon": "^1.8.1",
"sass-loader": "^3.1.2",
"node-sass": "^3.4.2",
"parallelshell": "^2.0.0"
},
"scripts": {
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:webpack:dev": "webpack",
"build": "npm run build:webpack",
"build:dev": "npm run build:webpack:dev",
"watch:client": "webpack --progress --colors --watch",
"watch:server": "NODE_ENV=development nodemon --debug --watch server index.js",
"dev": "parallelshell 'npm run watch:client' 'npm run watch:server'"
}
}