-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "glastonbury-set-finder",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build && npx prisma migrate deploy",
"start": "next start",
"lint": "next lint",
"seed": "npx ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" scripts/seed-db.ts",
"migrate-prod": "npx prisma migrate deploy"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@prisma/client": "4.16.2",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"clsx": "^1.2.1",
"dotenv": "^16.1.3",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-spinners": "^0.13.8",
"tailwindcss": "3.3.2",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/next-auth": "^3.15.0",
"@types/qs": "^6.9.7",
"prisma": "^4.16.2",
"ts-node": "^10.9.1"
}
}