-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"private": true,
"workspaces": [
"api",
"web-client",
"trpc",
"app-types"
],
"scripts": {
"api:build": "yarn workspace api build",
"api:dev": "yarn workspace api dev",
"api:test": "yarn workspace api test",
"api:lint": "yarn workspace api lint",
"api:syntax-check": "yarn workspace api syntax-check",
"api:ci": "yarn workspace api ci",
"web:lint": "yarn workspace web-client lint",
"web:dev": "yarn workspace web-client dev",
"web:build": "yarn workspace web-client build",
"web:start": "yarn workspace web-client start",
"trpc:generate": "yarn workspace trpc generate",
"trpc:lint": "yarn workspace trpc lint",
"trpc:syntax-check": "yarn workspace trpc syntax-check",
"trpc:ci": "yarn workspace trpc ci"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"typescript": "5.6.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@tanstack/react-query": "4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2"
},
"resolutions": {
"@types/react": "18.3.5"
}
}