-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "simple-marketplace",
"version": "0.1.0",
"private": true,
"prisma": {
"schema": "backend/db/schema.prisma"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:postgres": "npx prisma migrate dev --name postgres-init",
"prisma:migrate": "dotenv -e .env.local -- npx prisma migrate dev",
"prisma:db": "dotenv -e .env.local -- npx prisma db $1",
"prisma:studio": "dotenv -e .env.local -- npx prisma studio $1",
"prisma:seed": "dotenv -e .env.local -- npx prisma db seed"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.5.0",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/material": "^5.0.1",
"@prisma/client": "^3.1.1",
"dotenv": "^16.0.0",
"dotenv-cli": "^5.1.0",
"next": "^12.0.8",
"next-auth": "^3.29.0",
"notistack": "^2.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@types/react": "17.0.24",
"dotenv-cli": "^5.1.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prisma": "^3.1.1",
"typescript": "^4.4.3"
}
}