-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
52
53
54
55
56
57
58
59
{
"name": "query",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=20.16.0",
"pnpm": ">=9"
},
"scripts": {
"dev": "turbo run dev --parallel",
"dev:portal": "turbo run dev --filter=portal",
"dev:mainweb": "turbo run dev --filter=web",
"build:mainweb": "turbo run build --filter=web",
"build": "turbo run build",
"start": "turbo run start",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"format": "turbo run format",
"format:fix": "turbo run format -- --write",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@query/eslint-config": "workspace:*",
"@query/prettier-config": "workspace:*",
"@query/tailwind-config": "workspace:*",
"@query/tsconfig": "workspace:*",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@trpc/client": "^11.7.2",
"@trpc/next": "^11.7.2",
"@trpc/react-query": "^11.7.2",
"@trpc/server": "^11.7.2",
"@turbo/gen": "^2.1.3",
"@types/minimatch": "^6.0.0",
"prettier": "^3.3.3",
"turbo": "^2.6.3",
"typescript": "^5.6.3",
"zod": "^3.23.8"
},
"prettier": "@query/prettier-config",
"pnpm": {
"overrides": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/node": "^22.10.1"
}
},
"dependencies": {
"@tanstack/react-router": "^1.141.2",
"autoprefixer": "^10.4.22",
"chart.js": "^4.5.1",
"postcss": "^8.5.6"
}
}