-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "citetrack",
"version": "0.1.0",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"start": "bun .output/server/index.mjs",
"test": "NODE_ENV=test vitest run tests/unit tests/integration",
"test:unit": "NODE_ENV=test vitest run tests/unit",
"test:integration": "NODE_ENV=test vitest run tests/integration",
"test:perf": "PERF=1 NODE_ENV=test vitest run tests/perf",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"doctor": "npx react-doctor@latest"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxlint --fix"
]
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@t3-oss/env-core": "^0.13.11",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.10.5",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-query-devtools": "^5.100.14",
"@tanstack/react-router": "^1.170.8",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.0",
"@tanstack/react-start": "^1.168.14",
"@tanstack/router-plugin": "^1.132.0",
"@tanstack/zod-adapter": "^1.166.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"docx": "^9.7.1",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"exceljs": "^4.4.0",
"impit": "^0.14.0",
"lucide-react": "^0.577.0",
"node-html-parser": "^7.1.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.5.207",
"pg": "^8.16.3",
"pizzip": "^3.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.3.6",
"typo-js": "^1.3.1",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "^0.7.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/typo-js": "^1.2.2",
"@vitejs/plugin-react": "^5.1.4",
"dotenv": "^17.3.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"nitro": "^3.0.260522-beta",
"oxlint": "^1.56.0",
"react-doctor": "^0.2.9",
"testcontainers": "^12.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
},
"trustedDependencies": [
"onnxruntime-node",
"protobufjs"
]
}