-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "chess",
"private": true,
"version": "0.1.0",
"license": "MIT",
"workspaces": [
"client",
"server"
],
"scripts": {
"postinstall": "husky install",
"setup": "node setup.js",
"cspell": "cspell --config cspell.json \"**/*.{ts,tsx,js,jsx,json,html}\"",
"lint": "yarn workspace client lint && yarn workspace server lint",
"docker-client-up": "docker-compose -f docker-compose-client.yaml up -d --build",
"docker-dev-up": "docker-compose -f docker-compose-dev.yaml up -d --build",
"docker-up": "docker-compose up -d --build",
"docker-down": "docker-compose down",
"docker-destroy": "docker-compose down -v"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"cspell": "^8.6.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"tsx": "^4.7.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "20.13.1"
},
"packageManager": "[email protected]",
"dependencies": {
"@barrymun/chess-common": "^0.0.4"
}
}