-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "werewolf-moderator",
"version": "0.1.0",
"description": "App to moderate werewolf game.",
"main": "webpack.config.js",
"scripts": {
"start": "cross-env NODE_ENV='development' node server.development",
"build": "cross-env NODE_ENV='production' webpack --config webpack.config.production.js --progress --profile --colors",
"now-start": "cross-env NODE_ENV='production' node server.production.js",
"lint": "eslint --ext .js --ext .jsx ."
},
"authors": [
"wistcc <[email protected]> http://winnercrespo.com",
"vetom <[email protected]>"
],
"keywords": [
"werewolf",
"moderator"
],
"repository": "https://github.com/wistcc/werewolf-brain",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.3.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.27.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"resolve-url-loader": "^2.0.2",
"style-loader": "^0.18.2",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"express": "^4.15.3",
"history": "^4.6.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.4.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"werewolf-brain": "^2.1.0-beta"
}
}