-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "vk",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"watch": "tsc --watch",
"typecheck": "tsc --noemit",
"lint": "eslint \"./src/**/*\"",
"commit-check": "npm-run-all --parallel lint typecheck"
},
"dependencies": {
"chess.js": "^0.11.0",
"craftjs-plugin": "^0.4.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"sprintf-js": "^1.1.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@craftjs-types/java.base": "^16.0.1-62a175c",
"@craftjs-types/paper": "^1.17.0-65f98c5",
"@types/chess.js": "^0.10.1",
"@types/lodash": "^4.14.168",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.4.1",
"typescript": "^4.2.2"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-push": "npm run commit-check",
"pre-commit": "npm run commit-check"
}
}