-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "stronk-v1.1.0",
"main": "index.html",
"js-flags": "--expose-gc",
"chromium-args": "--mixed-context --remote-debugging-port=9223 --load-extension=chrome --limit-fps=60",
"window": {
"title": "STRONK! v.0.1.0",
"toolbar": false,
"width": 1280,
"height": 720,
"resizable": false,
"icon": "icon/icon.png"
},
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch"
},
"devDependencies": {
"@types/lz-string": "^1.3.33",
"@types/node": "^11.13.13",
"@types/pixi.js": "^4.8.8",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"bestzip": "^2.1.7",
"concat-with-sourcemaps": "^1.0.4",
"cpx": "^1.5.0",
"crc-32": "^1.0.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"http-server": "^0.11.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"node-watch": "^0.4.1",
"npm-run-all": "^4.0.0",
"prettier": "^1.17.1"
},
"dependencies": {
"@types/lodash": "^4.14.139",
"@typescript-eslint/parser": "^2.2.0",
"iphone-inline-video": "^2.2.2",
"lodash": "^4.17.15",
"lz-string": "^1.4.4",
"nw": "^0.41.1",
"pixi-picture": "^1.3.1",
"pixi-tilemap": "^1.2.4",
"pixi.js": "^4.8.8",
"source-map-support": "^0.5.13",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,ts}": [
"prettier --write",
"git add"
],
"*.js,ts": [
"eslint --fix",
"git add"
]
}
}