-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "ptadmin",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit",
"lint": "eslint src --quiet",
"test": "node scripts/check-sql.mjs && eslint src --quiet && esbuild scripts/smoke.ts --bundle --platform=node --format=esm --outfile=.smoke.mjs --log-level=warning && node .smoke.mjs",
"check-sql": "node scripts/check-sql.mjs",
"icons": "node scripts/make-icons.mjs"
},
"dependencies": {
"@fontsource-variable/manrope": "^5.3.0",
"@supabase/supabase-js": "^2.111.0",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"jspdf": "^2.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.9.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.66.0",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.21.1"
}
}