-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "tanks",
"version": "0.1.0",
"description": "Tanks is a classic 2D arcade game.",
"author": "Mark <mark@remarkablemark.org>",
"scripts": {
"build": "node scripts/build",
"clean": "rm -rf build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"deploy": "npm run clean && npm run build && gitploy build gh-pages",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"release": "standard-version --no-verify",
"start": "node scripts/start"
},
"homepage": "https://remarkablegames.org/tanks/",
"repository": {
"type": "git",
"url": "https://github.com/remarkablegames/tanks"
},
"bugs": {
"url": "https://github.com/remarkablegames/tanks/issues"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"autoprefixer": "9.3.1",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chalk": "2.4.1",
"css-loader": "0.28.7",
"dotenv": "6.1.0",
"eslint": "5.8.0",
"eslint-loader": "2.1.1",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "2.0.0",
"fs-extra": "7.0.0",
"gitploy": "0.1.0",
"html-webpack-plugin": "3.2.0",
"husky": "0.14.3",
"lint-staged": "8.0.4",
"phaser": "3.15.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"prettier": "1.14.3",
"react-dev-utils": "4.2.1",
"standard-version": "4.4.0",
"style-loader": "0.23.1",
"sw-precache-webpack-plugin": "0.11.5",
"url-loader": "1.1.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4",
"webpack-manifest-plugin": "2.0.4"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"private": true,
"license": "MIT"
}