-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.44 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.44 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
{
"name": "trackdrop",
"private": true,
"type": "module",
"packageManager": "pnpm@10.17.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "22.14.0",
"onFail": "download"
}
},
"scripts": {
"dev": "pnpm relay && vite dev --port 3000",
"start": "node .output/server/index.mjs",
"relay": "relay-compiler",
"build": "pnpm relay && vite build",
"serve": "vite preview",
"test": "vitest run",
"lint": "eslint",
"tsc": "tsc --noEmit",
"format": "prettier --check .",
"fix": "prettier --write . && eslint --fix",
"checkall": "pnpm run tsc && pnpm run lint && pnpm run format && pnpm run test"
},
"dependencies": {
"@sentry/tanstackstart-react": "10.16.0",
"@tailwindcss/vite": "4.1.13",
"@tanstack/react-devtools": "0.2.2",
"@tanstack/react-router": "1.132.23",
"@tanstack/react-router-devtools": "1.132.23",
"@tanstack/react-start": "1.132.23",
"@tanstack/router-plugin": "1.132.23",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.544.0",
"react": "canary",
"react-dom": "canary",
"react-relay": "20.1.1",
"relay-runtime": "20.1.1",
"tailwind-merge": "3.3.1",
"tailwindcss": "4.1.13",
"tw-animate-css": "1.4.0",
"vite-plugin-cjs-interop": "^2.3.0",
"vite-tsconfig-paths": "5.1.4"
},
"devDependencies": {
"@tanstack/eslint-config": "0.3.2",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.0",
"@types/node": "22.18.0",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/react-relay": "18.2.1",
"@types/relay-runtime": "19.0.3",
"@vitejs/plugin-react": "5.0.4",
"babel-plugin-react-compiler": "1.0.0",
"babel-plugin-relay": "20.1.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "0.4.20",
"eslint-plugin-relay": "2.0.0",
"graphql": "16.11.0",
"jsdom": "26.0.0",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.14",
"relay-compiler": "20.1.1",
"typescript": "5.9.3",
"vite": "npm:rolldown-vite@latest",
"vitest": "3.2.4",
"web-vitals": "5.1.0"
}
}