-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "nubepedia",
"version": "0.1.0",
"dependencies": {
"@emotion/react": "11.10.5",
"@hookform/resolvers": "2.9.11",
"@next-auth/prisma-adapter": "1.0.5",
"@next/font": "13.1.6",
"@prisma/client": "4.10.1",
"jotai": "2.0.1",
"next": "13.1.6",
"next-auth": "4.19.2",
"nodemailer": "6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.1"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-simple-import-sort": "10.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"prettier-plugin-prisma": "4.10.0",
"prisma": "4.10.1",
"typescript": "4.9.5"
},
"private": true,
"scripts": {
"build": "run-s build:gen build:next",
"build:next": "next build",
"dev": "run-p studio dev:*",
"dev:next": "next dev",
"fmt": "prettier -w src prisma",
"gen": "prisma generate",
"lint": "next lint",
"push": "prisma db push",
"start": "next start",
"studio": "prisma studio"
}
}