-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 2.23 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
{
"name": "Bughouse-Chess",
"version": "0.1.1",
"private": false,
"description": "Bughouse chess web application",
"author": "John DiIorio",
"license": "GPL-3.0",
"scripts": {
"start": "node ./src/server/www",
"dev": "webpack -d --watch --color --progress",
"build": "cross-env NODE_ENV=production webpack -p",
"lint": "./node_modules/.bin/eslint src/client/app/**/*.js src/client/app/**/*.jsx src/server/**/*.js src/server/**/*.jsx src/scripts/**/*.js",
"createdb": "node ./src/scripts/createDB.js"
},
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "~1.15.1",
"chart.js": "^2.7.1",
"chessground": "^6.5.8",
"cookie-parser": "~1.4.3",
"cross-env": "^5.0.3",
"css-loader": "^0.28.4",
"dotenv": "^2.0.0",
"es6-promisify": "^5.0.0",
"express": "~4.13.4",
"express-rate-limit": "^2.11.0",
"glicko2": "^0.8.4",
"jsonschema": "^1.2.2",
"jsonwebtoken": "^7.4.2",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.0",
"moment": "^2.20.1",
"morgan": "^1.8.1",
"nodemailer": "^4.4.1",
"pg-promise": "^5.9.7",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-chartjs-2": "^2.6.4",
"react-dom": "^15.6.1",
"react-notification-system": "^0.2.15",
"react-rangeslider": "^2.1.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-toggle": "^3.0.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"request": "^2.78.0",
"request-promise-native": "^1.0.3",
"serve-favicon": "~2.3.0",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"redux-devtools": "^3.3.2"
}
}