-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
38 lines (38 loc) · 938 Bytes
/
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
{
"name": "angel_arena_black_star",
"private": true,
"scripts": {
"build": "gulp --cwd scripts build",
"dev": "gulp --cwd scripts watch",
"launch": "node scripts/launch.js",
"lint": "run-p lint:prettier",
"lint:prettier": "prettier --check \"{,game/,content/}**/*.{js,ts,md,yml,yaml,json,css,scss}\"",
"postinstall": "node scripts/install.js && yarn build"
},
"prettier": {
"trailingComma": "all",
"printWidth": 100,
"singleQuote": true,
"proseWrap": "always",
"overrides": [
{
"files": "*.y{,a}ml",
"options": {
"proseWrap": "never"
}
}
]
},
"devDependencies": {
"find-steam-app": "^1.0.2",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"gulp": "^4.0.2",
"gulp-sass": "^4.0.2",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"upath": "^1.2.0",
"vdf-extra": "^2.2.2"
}
}