-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "token-invalidator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@prisma/client": "^3.15.1",
"cookie": "^0.5.0",
"cookies": "^0.8.0",
"jsonwebtoken": "^8.5.1",
"next": "12.1.6",
"next-themes": "^0.2.0",
"octokit": "^1.7.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"swr": "^1.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"vercel-toast": "^1.5.5"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/node": "^17.0.41",
"@types/react": "^18.0.12",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.14",
"prisma": "^3.15.1",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.3"
}
}