-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.08 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
{
"name": "saastool",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"seed": "ts-node prisma/seed.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name",
"prisma:studio": "prisma studio",
"postinstall": "prisma generate"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/forms": "^0.5.7",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "20.5.7",
"@vercel/postgres": "^0.5.0",
"autoprefixer": "10.4.15",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dompurify": "^3.1.6",
"highlight.js": "^11.10.0",
"js-beautify": "^1.15.1",
"jsdom": "^24.1.1",
"juice": "^10.0.0",
"lucide-react": "^0.396.0",
"next": "^14.0.2",
"next-auth": "^5.0.0-beta.19",
"postcss": "8.4.31",
"prismjs": "^1.29.0",
"razorpay": "^2.9.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-simple-code-editor": "^0.14.1",
"resend": "^4.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"use-debounce": "^10.0.1",
"uuid": "^10.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@prisma/client": "^5.14.0",
"@types/bcrypt": "^5.0.1",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.14",
"@vercel/style-guide": "^5.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "9.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"prisma": "^5.14.0",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.17.0"
}
}