-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
{
"name": "dcrs",
"version": "1.1.0",
"private": true,
"type": "module",
"description": "DCRS - Disability Certificate Register System📇",
"keywords": [
"auth.js",
"biome",
"bun",
"drizzle",
"drizzle-kit",
"nextjs",
"playwright",
"react",
"tailwindcss",
"typescript"
],
"author": "Marukome <jambalaya.pyoncafe@gmail.com> (https://github.com/Marukome0743)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenUp-LabTakizawa/dcrs"
},
"bugs": {
"url": "https://github.com/OpenUp-LabTakizawa/dcrs/issues"
},
"scripts": {
"dev": "next dev --turbopack",
"dev-win": "WATCHPACK_POLLING=true next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "biome lint --write",
"format": "biome format --write",
"lint:fix": "biome check --write",
"test:unit": "bun test test/unit --preload ./happydom.ts",
"test:e2e": "playwright test",
"test:report": "playwright show-report",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"studio": "drizzle-kit studio",
"setup": "bun run scripts/setup-env.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1038.0",
"@heroicons/react": "^2.2.0",
"@neondatabase/serverless": "^1.1.0",
"@tanstack/react-form": "^1.29.1",
"@vercel/blob": "^2.3.3",
"better-auth": "^1.6.9",
"drizzle-orm": "^0.45.2",
"next": "canary",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"theme-change": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "next",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.13",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"daisyui": "^5.5.19",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"fast-check": "^4.7.0",
"postcss": "^8.5.12",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3"
},
"trustedDependencies": [
"esbuild",
"sharp"
]
}