-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "NodeReactWebpackBabelBoilerplate",
"version": "0.3.0",
"description": "A Node.js, React Redux, Webpack and Babel Boilerplate",
"main": "server/index.js",
"scripts": {
"test": "jest",
"webpack": "webpack",
"start": "npm-run-all --parallel watch:server watch:build run:mongo run:redis",
"watch:build": "webpack --watch",
"watch:server": "nodemon bin/dev",
"run:mongo": "F:/Mongodb/bin/mongod.exe --dbpath=F:/data/db",
"run:redis": "F:/Redis/redis-server.exe --service-start",
"clean": "rmdir /S /Q dist",
"build babel": "npm run clean && mkdir dist && babel server -s -d dist",
"production babel": "npm run build babel && nodemon bin/production",
"production": "npm run webpack && nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrelug/node-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrelug/node-boilerplate/issues"
},
"homepage": "https://github.com/andrelug/node-boilerplate#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.1",
"babel-template": "^6.24.1",
"babel-types": "^6.24.1",
"css-loader": "^0.28.0",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"http-server": "^0.9.0",
"jest": "^19.0.2",
"mocha": "^3.3.0",
"node-minify": "^2.0.4",
"npm-run-all": "^4.0.2",
"webpack": "^2.4.1",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bootstrap-styl": "^5.0.8",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"express-react-views": "^0.10.2",
"express-session": "^1.15.2",
"fc-react-slider": "^0.1.0",
"got": "^6.7.1",
"jquery": "^3.2.1",
"lusca": "^1.4.1",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"mongoose": "^4.9.5",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"nib": "^1.1.2",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-openid": "^0.4.0",
"passport-steam": "^1.0.8",
"pretty-error": "^2.1.0",
"pug": "^2.0.0-beta.12",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-input-range": "^1.1.3",
"react-router": "^4.1.1",
"redis": "^2.7.1",
"socketio": "^1.0.0",
"steam": "^1.4.0",
"steam-totp": "^1.4.0",
"steam-tradeoffers": "^3.1.0",
"steam-user-inventory": "^4.1.0",
"steamcommunity": "^3.30.7",
"steamcommunity-mobile-confirmations": "^1.0.1",
"stylus": "^0.54.5",
"webpack": "^2.4.1"
}
}