forked from ecmascriptElephants/Monopoly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.45 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
{
"name": "monopoly",
"version": "1.0.0",
"description": "a web app for monopoly",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"start-dev": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint server/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecmascriptElephants/Monopoly.git"
},
"author": "Jinwei, Kyle & RJ",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecmascriptElephants/Monopoly/issues"
},
"homepage": "https://github.com/ecmascriptElephants/Monopoly#readme",
"dependencies": {
"axios": "^0.15.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.16.0",
"connect-flash": "^0.1.1",
"cors": "^2.8.1",
"essence-core": "^1.0.20",
"essence-snackbar": "^1.0.6",
"essence-toast": "^1.0.7",
"express": "^4.14.1",
"express-session": "^1.15.1",
"jsonwebtoken": "^7.3.0",
"knex": "^0.12.6",
"lodash.escape": "^4.0.1",
"material-ui": "^0.17.0",
"mongoose": "^4.8.4",
"morgan": "^1.8.0",
"mysql": "^2.13.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"q": "^1.4.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-motion": "^0.4.7",
"react-redux": "^5.0.2",
"react-router": "^4.0.0-beta.5",
"react-router-dom": "^4.0.0-beta.5",
"redux": "^3.6.0",
"redux-persist": "^4.4.2",
"semantic-ui-react": "^0.64.7",
"socket.io": "^1.7.2",
"standard-react": "^4.0.0",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.3.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"essence-core": "^1.0.20",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"node-sass": "^4.5.0",
"sass-loader": "^5.0.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}