-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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
{
"name": "incidents-attack",
"version": "0.0.5",
"description": "Incidents Attack is a game wrriten in ReactJS and created with the awesome react react-game-kit library.",
"homepage": "https://www.dorsha.com",
"author": "Doron Sharon",
"repository": {
"type": "git",
"url": "https://github.com/demisto/incidents-attack"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/demisto/incidents-attack"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && webpack",
"production": "NODE_ENV=production npm run build -- --config webpack.production.config.js --progress",
"start": "npm run clean && (webpack --progress --colors --watch & watch-http-server ./dist -p 8081)",
"devtools": "DEV_TOOLS=1 npm start",
"lint": "eslint src",
"check": "npm run lint",
"check-versions": "ncu"
},
"pre-commit": [
"lint"
],
"dependencies": {
"autobind-decorator": "^1.3.4",
"babel-runtime": "^6.11.6",
"classnames": "^2.2.5",
"html5-gamepad": "^0.1.4",
"less": "^2.7.1",
"lodash": "^4.16.2",
"matter-js": "^0.10.0",
"mobx": "^2.5.2",
"mobx-react": "^3.5.6",
"postcss-reporter": "^1.4.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-game-kit-without-gamepad": "0.0.1"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"firebase-tools": "^3.0.8",
"html-webpack-plugin": "^2.22.0",
"http-server": "^0.9.0",
"image-webpack-loader": "^2.0.0",
"json-loader": "^0.5.4",
"less-loader": "^2.2.3",
"normalize.css": "^4.0.0",
"npm-check-updates": "^2.8.0",
"postcss": "^5.2.2",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.0",
"postcss-loader": "^0.13.0",
"postcss-url": "^5.1.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.1",
"style-loader": "^0.13.1",
"watch-http-server": "^0.7.6",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2",
"webpack-livereload-plugin": "^0.8.2"
}
}