-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.39 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
{
"name": "fullstack-js-app",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/asotog/fullstack-javascript-boilerplate.git",
"main": "index.js",
"license": "MIT",
"author": "alejandro soto",
"scripts": {
"start:client": "webpack-dev-server --port 3001 --host 0.0.0.0;",
"start:server": "nodemon --watch server --watch shared --watch system-config server/server",
"start:server-debug": "nodemon --debug --watch server --watch shared --watch system-config server/server",
"start:dev-debug": "npm-run-all --parallel start:client start:server-debug",
"start:dev": "npm-run-all --parallel start:client start:server",
"build": "rimraf build && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"start:prod": "npm run build && cross-env NODE_ENV=production PORT=8080 node server/server"
},
"dependencies": {
"body-parser": "1.18.2",
"bootstrap": "4.0.0-alpha.6",
"cookie-parser": "1.4.3",
"cross-env": "5.0.5",
"express": "4.16.1",
"express-handlebars": "3.0.0",
"express-session": "1.15.6",
"hbs": "4.0.1",
"history": "4.7.2",
"jquery": "3.2.1",
"passport": "0.4.0",
"passport-http": "0.3.0",
"passport-local": "1.0.0",
"promise-polyfill": "6.0.2",
"query-string": "5.0.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-localization": "0.1.2",
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-router-redux": "4.0.8",
"redux": "3.7.2",
"redux-form": "7.1.0",
"redux-thunk": "2.2.0",
"whatwg-fetch": "2.0.3",
"winston": "2.4.0"
},
"devDependencies": {
"autoprefixer": "7.1.5",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "0.28.7",
"express-delay": "0.2.0",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"node-sass": "4.5.3",
"nodemon": "1.12.1",
"npm-run-all": "4.1.1",
"postcss-loader": "2.0.6",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"session-file-store": "1.1.2",
"strip-loader": "0.1.2",
"style-loader": "0.19.0",
"svg-url-loader": "2.2.0",
"webpack": "3.6.0",
"webpack-dev-middleware": "1.12.0",
"webpack-dev-server": "2.9.1",
"webpack-hot-middleware": "2.19.1"
}
}