-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "validators-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "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"
},
"dependencies": {
"@next/font": "13.1.6",
"@prisma/client": "^4.10.1",
"axios": "^1.3.3",
"cronstrue": "^2.23.0",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"ethers": "5.7.2",
"https": "^1.0.0",
"moment": "^2.29.4",
"next": "^13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"sweetalert": "^2.1.2",
"web3": "1.7.4"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.0.0",
"postcss": "^8.4.21",
"prisma": "^4.10.1",
"tailwindcss": "^3.2.7"
}
}