forked from elc1090/project2-2024a-matheus-e-wederson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "project2-2024a-matheus-e-wederson",
"version": "0.1.0",
"homepage": "https://elc1090.github.io/project2-2024a-fork-matheus-e-wederson-remodelado-by-rt-renan-y-thales/",
"private": true,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint --fix",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"@t3-oss/env-nextjs": "^0.9.2",
"clsx": "^2.1.0",
"lucide-react": "^0.372.0",
"next": "14.2.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.3",
"react-toastify": "^10.0.5",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"gh-pages": "^6.1.1",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.12.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}