-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.58 KB
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
{
"name": "my-library",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "npx dotenv -e .env.local next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "npx dotenv -e .env.local -- prisma migrate dev",
"db:push": "npx dotenv -e .env.local -- prisma db push",
"migrate:reset": "npx dotenv -e .env.local -- prisma migrate reset",
"db:seed": "npx dotenv -e .env.local -- prisma db seed",
"prisma:generate": "npx dotenv -e .env.local -- prisma generate",
"prisma:studio": "npx dotenv -e .env.local -- prisma studio",
"production:build": "npx prisma generate && npx prisma migrate deploy && next build",
"db:seed:production": "npx dotenv -e .env.production -- prisma db seed"
},
"dependencies": {
"@next/font": "13.1.2",
"@prisma/client": "^4.8.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.2.2",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"next": "13.1.2",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.42.1",
"react-select": "^5.7.0",
"react-toastify": "^9.1.1",
"typescript": "4.9.4",
"yup": "^0.32.11"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"postcss": "^8.4.21",
"prisma": "^4.8.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
}
}