-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.78 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.78 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
{
"name": "citz-sbc-queue",
"version": "0.1.0",
"private": true,
"description": "Service BC Queue Management System",
"author": "CITZ Team",
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"up": "tsx scripts/container.ts up",
"down": "tsx scripts/container.ts down",
"rebuild": "npx prisma generate && tsx scripts/container.ts rebuild",
"db:studio": "tsx scripts/container.ts db:studio",
"db:generate": "npx prisma generate",
"db:migrate": "tsx scripts/container.ts db:migrate",
"db:push": "tsx scripts/container.ts db:push",
"db:reset": "tsx scripts/container.ts db:reset",
"db:seed": "tsx scripts/container.ts db:seed",
"dev": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"format:check": "biome format ./src",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"playwright:install": "playwright install",
"clean": "rm -rf .next out build dist coverage test-results playwright-report",
"check-licenses": "tsx scripts/check-licenses.ts"
},
"dependencies": {
"@bcgov/bc-sans": "2.1.0",
"@headlessui/react": "2.2.9",
"@heroicons/react": "2.2.0",
"@prisma/adapter-pg": "7.0.1",
"@prisma/client": "7.1.0",
"@tailwindcss/postcss": "4.1.11",
"dotenv": "17.2.3",
"next": "16.1.4",
"postcss": "8.5.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"typescript": "5.9.2",
"zod": "4.0.14",
"zustand": "5.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@playwright/test": "1.54.1",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.9",
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "24.1.0",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@types/supertest": "6.0.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"jsdom": "26.0.0",
"license-checker": "25.0.1",
"prisma": "7.1.0",
"supertest": "7.1.4",
"tailwindcss": "4.1.11",
"tsx": "4.20.4",
"vitest": "3.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}