-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.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
{
"name": "gameplate",
"version": "1.0.0",
"description": "Boilerplate for creating simple game",
"main": "src/index.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline --port 3000",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yankouskia/gameplate.git"
},
"keywords": [
"game",
"redux",
"pixi",
"webgl",
"eslint",
"webpack"
],
"author": "yankouskia [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/yankouskia/gameplate/issues"
},
"homepage": "https://github.com/yankouskia/gameplate#readme",
"dependencies": {
"lodash": "^4.17.11",
"pixi.js": "^4.4.3",
"redux": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^2.0.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-notifier": "^1.7.0"
}
}