forked from nextacular/nextacular
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "nextacular",
"version": "1.3.0-Beta",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true yarn build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:reset": "npx prisma migrate reset --force && prisma migrate deploy",
"ts": "tsc --noEmit --pretty"
},
"dependencies": {
"@headlessui/react": "1.7.8",
"@heroicons/react": "2.0.14",
"@next-auth/prisma-adapter": "1.0.5",
"@next/bundle-analyzer": "^13.1.6",
"@prisma/client": "4.9.0",
"@stripe/stripe-js": "1.46.0",
"date-fns": "2.29.3",
"express-validator": "6.14.3",
"i18next": "^22.4.9",
"logsnag": "0.1.6",
"micro": "10.0.1",
"next": "13.1.6",
"next-auth": "4.19.0",
"next-i18next": "^13.0.3",
"next-themes": "0.2.1",
"nodemailer": "6.9.1",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
"react-ga": "3.3.1",
"react-hot-toast": "2.4.0",
"react-i18next": "^12.1.4",
"react-icons": "4.7.1",
"react-topbar-progress-indicator": "4.1.1",
"slugify": "1.6.5",
"stripe": "11.8.0",
"swr": "2.0.3",
"validator": "13.7.0"
},
"devDependencies": {
"@types/react": "18.0.27",
"@typescript-eslint/eslint-plugin": "5.49.0",
"autoprefixer": "10.4.13",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"postcss": "8.4.21",
"prisma": "4.9.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.4"
}
}