-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.38 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.38 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
{
"name": "dojolm-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run build:scanner && next dev --port 42001",
"build": "npm run build:scanner && next build --webpack",
"build:scanner": "cd ../dojolm-scanner && npm run build",
"start": "next start --port 42001",
"start:secure": "npx tsx server.ts",
"lint": "eslint .",
"typecheck": "next typegen && tsc --noEmit -p tsconfig.typecheck.json",
"type-check": "npm run typecheck",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:headed": "npx playwright test --headed",
"analyze": "ANALYZE=true npm run build",
"db:migrate": "npx tsx scripts/migrate-json-to-db.ts",
"db:init": "npx tsx -e \"const { initializeDatabase } = require('./src/lib/db'); initializeDatabase();\""
},
"dependencies": {
"@dojolm/scanner": "file:../dojolm-scanner",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"bu-tpi": "file:../bu-tpi",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^0.575.0",
"next": "16.2.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.7.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.16.0",
"eslint-config-next": "^16.2.1",
"jsdom": "^29.0.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
}
}