forked from Toby222/SharkGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.47 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
{
"name": "shark_game",
"version": "0.9.0",
"repository": "https://github.com/spencers145/SharkGame",
"author": "spencers145 <smartypantsspencer@gmail.com>",
"license": "MIT",
"types": "index.d.ts",
"scripts": {
"postinstall": "yarn simple-git-hooks",
"fix": "eslint . --fix && prettier . --write",
"lint": "yarn lint:eslint && yarn lint:prettier",
"test": "yarn lint:eslint:strict && yarn lint:prettier",
"css": "yarn scss && yarn scss:big",
"scss": "sass ./styles/style.scss:./css/style.min.css --style=compressed",
"scss:big": "sass ./styles/style.scss:./css/style.css",
"scss:w": "yarn scss --watch",
"scss:w:big": "yarn scss:big --watch",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --format visualstudio",
"lint:eslint:strict": "yarn lint:eslint --max-warnings=0"
},
"devDependencies": {
"@types/jquery": "^3.5.30",
"@types/lodash": "^4.17.5",
"@types/pako": "2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "yarn test"
}
}