-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "query",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20.16.0 <23",
"pnpm": ">=9"
},
"scripts": {
"dev": "turbo run dev --parallel",
"dev:mainweb": "turbo run dev --filter=web",
"dev:full": "turbo run dev --parallel",
"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"
},
"dependencies": {
"@query/db": "workspace:*",
"@tanstack/react-router": "1.141.2",
"autoprefixer": "10.4.22",
"chart.js": "4.5.1",
"csv-parse": "6.1.0",
"minimatch": "10.2.3",
"next": "16.2.3",
"postcss": "8.5.6",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"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.8.0",
"@trpc/react-query": "11.8.0",
"@trpc/server": "11.8.0",
"@turbo/gen": "2.1.3",
"@types/node": "22.19.2",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"prettier": "3.3.3",
"tsx": "4.21.0",
"turbo": "2.6.3",
"typescript": "^6.0.0",
"zod": "3.23.8"
},
"prettier": "@query/prettier-config",
"pnpm": {
"overrides": {
"basic-ftp": ">=5.2.0",
"minimatch": ">=10.2.3",
"next": "16.2.3",
"js-yaml": ">=4.1.0",
"esbuild": ">=0.25.0",
"qs": ">=6.14.2",
"tmp": ">=0.2.3",
"rollup": ">=4.59.0",
"immutable": ">=5.1.5",
"undici": ">=6.24.0",
"flatted": "3.4.2",
"picomatch": ">=2.3.2",
"handlebars": ">=4.7.9",
"brace-expansion": ">=5.0.5",
"nodemailer": ">=8.0.4",
"ipaddr.js": ">=2.2.1",
"typescript": "^6.0.0",
"eslint": "9.17.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0"
}
}
}