-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "kasca",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:client": "turbo build --filter=client...",
"build:server": "turbo build --filter=server...",
"lint:check": "turbo lint:check",
"lint:fix": "turbo lint:fix",
"format:check": "prettier --check **/*.{js,mjs,jsx,ts,tsx,json}",
"format:fix": "prettier --write **/*.{js,mjs,jsx,ts,tsx,json}",
"test:client": "turbo test:e2e",
"test:client:ui": "turbo test:e2e:ui",
"test:client:debug": "turbo test:e2e:debug",
"test:client:report": "turbo test:e2e:report",
"test:server": "turbo test:socket",
"test:server:remote": "turbo test:socket:remote",
"test:server:watch": "turbo test:watch",
"clean": "node scripts/clean.js",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,mjs,jsx,ts,tsx,json}": [
"pnpm format:check"
],
"apps/client/**/*.{js,mjs,jsx,ts,tsx}": [
"pnpm --filter=client lint:check"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/simple-peer": "^9.11.8",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-classnames": "^0.7.5",
"prettier-plugin-merge": "^0.7.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^6.0.1",
"turbo": "^2.3.4",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
},
"packageManager": "[email protected]"
}