-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome lint ./",
"preview": "next build && next start",
"lint:fix": "biome lint --write ./",
"format:check": "biome format ./",
"format:write": "biome format --write ./",
"check": "biome check ./",
"check:fix": "biome check --write ./",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watchAll",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,jsonc,css}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.3",
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-slot": "^1.3.3",
"@stripe/stripe-js": "^9.16.0",
"@t3-oss/env-nextjs": "^0.13.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.44.0",
"next": "16.3.4",
"next-auth": "^5.0.0-beta.32",
"next-intl": "^4.14.3",
"next-themes": "^0.4.6",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"stripe": "^22.6.2",
"tailwind-merge": "^3.6.0",
"zod": "^4.6.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.13",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/jest": "^30.0.0",
"@types/node": "^26.4.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"jest": "^30.5.1",
"jest-environment-jsdom": "^30.5.1",
"lint-staged": "^17.5.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2"
}
}