-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 KB
/
package.json
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
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run prisma-generate && npm run prisma-deploy && next build",
"start": "next start",
"lint": "next lint",
"prisma-migrate": "npx prisma migrate dev",
"prisma-generate": "npx prisma generate",
"prisma-deploy": "npx prisma migrate deploy"
},
"dependencies": {
"@enipx/react-insta-stories": "^1.0.5",
"@gandalf-network/connect": "^1.0.12",
"@prisma/client": "^5.13.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@vercel/analytics": "^1.2.2",
"@vercel/kv": "^1.0.1",
"@vercel/node": "^3.0.26",
"api": "^6.1.1",
"axios": "^1.6.8",
"bottleneck": "^2.19.5",
"bullmq": "^5.5.1",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cookies-next": "^4.1.1",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"downloadjs": "^1.4.7",
"elliptic": "^6.5.5",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"html-to-image": "^1.11.11",
"http": "^0.0.1-security",
"inngest": "^3.19.0",
"ioredis": "^5.3.2",
"js-levenshtein": "^1.1.6",
"lucide-react": "^0.331.0",
"module-alias": "^2.2.3",
"next": "14.1.0",
"next-themes": "^0.2.1",
"openai": "^4.39.0",
"qr-code-styling": "^1.6.0-rc.1",
"react": "^18",
"react-countdown-circle-timer": "^3.2.1",
"react-dom": "^18",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/downloadjs": "^1.4.6",
"@types/elliptic": "^6.4.18",
"@types/js-levenshtein": "^1.1.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^12.0.0",
"nodemon": "^3.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prisma": "^5.12.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"_moduleAliases": {
"@": "./src"
}
}