-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.76 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "devix",
"version": "1.0.0",
"packageManager": "bun@1.3.14",
"type": "module",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "prisma generate && next dev",
"dev:clean": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:vitest": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"clean": "rm -rf .next node_modules/.cache tsconfig.tsbuildinfo",
"perf:analyze": "ANALYZE=true bun run build",
"perf:lighthouse": "lhci autorun --config=lighthouserc.cjs",
"perf:lighthouse:mobile": "lhci autorun --config=lighthouserc.mobile.cjs",
"db:seed": "bun prisma/seed.ts"
},
"lint-staged": {
"**/*.{html,css,scss,less,json,js,jsx,ts,tsx,md,mdx}": [
"prettier --config .prettierrc.json --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.01%",
"not dead",
"not op_mini all"
],
"development": [
">0.01%",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@marsidev/react-turnstile": "^1.5.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@stripe/react-stripe-js": "^6.6.0",
"@stripe/stripe-js": "^9.7.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"@tiptap/extension-heading": "^3.25.0",
"@tiptap/extension-image": "^3.25.0",
"@tiptap/extension-link": "^3.25.0",
"@tiptap/extension-placeholder": "^3.25.0",
"@tiptap/react": "^3.25.0",
"@tiptap/starter-kit": "^3.25.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"@vercel/speed-insights": "^2.0.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.4.0",
"framer-motion": "^12.40.0",
"isomorphic-dompurify": "^2.22.0",
"jose": "^6.2.3",
"jspdf": "^4.2.1",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"pg": "^8.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"resend": "^6.12.4",
"stripe": "^22.2.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@next/bundle-analyzer": "^16.2.7",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^63.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.1.8"
}
}