-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "auth-example",
"version": "1.0.0",
"description": "",
"keywords": [
"OAuth2"
],
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"prisma:generate": "prisma generate",
"test": "jest --",
"test:w": "jest --watch"
},
"dependencies": {
"@prisma/client": "3.14.0",
"@reach/auto-id": "^0.17.0",
"cloudinary": "^1.29.0",
"cookie": "^0.5.0",
"formidable": "^2.0.1",
"jotai": "^1.6.1",
"jsonwebtoken": "^8.5.1",
"mem": "^9.0.2",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.29.0",
"react-markdown": "8.0.3",
"terser": "^4.6.13"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.1.1",
"@types/cookie": "0.5.1",
"@types/formidable": "2.0.4",
"@types/jest": "27.4.1",
"@types/jsonwebtoken": "8.5.8",
"@types/md5": "2.3.2",
"@types/node": "16.11.32",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.16",
"babel-jest": "27.5.1",
"eslint": "8.16.0",
"eslint-config-next": "12.1.5",
"jest": "27.5.1",
"prisma": "3.14.0",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}