forked from colorstheforce/Bitcoin-Slot-Casino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.67 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
{
"name": "webSlots",
"version": "0.1.0",
"description": "",
"main": "src/dist/index.html",
"author": "",
"license": "MIT",
"scripts": {
"webpack": "webpack",
"prod-webpack": "export NODE_ENV=production && webpack --config webpack-prod.config.js",
"win-prod-webpack": "set NODE_ENV=production && webpack --config webpack-prod.config.js",
"react": "webpack && webpack-dev-server --progress --inline",
"start": "webpack && node node_backend/server.js",
"test": "jest"
},
"devDependencies": {
"axios": "^0.16.2",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "^0.28.0",
"file-loader": "^0.11.2",
"image-webpack-loader": "^3.3.1",
"jquery": "^3.2.1",
"material-ui": "^0.19.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"style-loader": "^0.16.1",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bitgo": "^3.4.4",
"bluebird": "^3.5.0",
"body-parser": "^1.15.0",
"chance": "^1.0.11",
"cookie-parser": "^1.4.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"mongoose": "^4.11.1",
"morgan": "^1.7.0",
"nodemailer": "^4.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"rss-parser": "^2.10.1"
}
}