-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.37 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
{
"name": "moim-app",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run db:migrate",
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"db:migrate": "node scripts/ensure-sqlite-schema.mjs",
"lint": "eslint src e2e --ext .ts,.tsx",
"pretest": "npm run db:migrate",
"test": "node scripts/with-database-url.mjs vitest run",
"test:watch": "node scripts/with-database-url.mjs vitest",
"pretest:coverage": "npm run db:migrate",
"test:coverage": "node scripts/with-database-url.mjs vitest run --coverage",
"pretest:e2e": "node scripts/ensure-sqlite-schema.mjs && node scripts/with-database-url.mjs next build",
"test:e2e": "node scripts/with-database-url.mjs playwright test",
"prepare": "husky",
"postinstall": "prisma generate"
},
"dependencies": {
"@base-ui/react": "^1.4.0",
"@prisma/client": "6.19.3",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fast-xml-parser": "^5.5.12",
"jose": "^6.2.3",
"lucide-react": "^1.8.0",
"next": "15.5.18",
"prisma": "6.19.3",
"react": "^18",
"react-dom": "^18",
"shadcn": "^4.2.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@emnapi/core": "^1.11.0",
"@emnapi/runtime": "^1.11.0",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.7",
"autoprefixer": "^10.5.0",
"dotenv": "^17.4.2",
"eslint": "^8",
"eslint-config-next": "15.5.18",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"magicast": "^0.3.5",
"postcss": "8.5.15",
"prettier": "^3.8.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vercel": "^54.12.0",
"vitest": "4.1.7"
},
"overrides": {
"postcss": "8.5.15"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}