-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "verse-latest",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"start": "next start -p 3000",
"==================== BUILD ====================": "",
"build": "next build",
"now-build": "yarn db:generate && next build",
"==================== DB ====================": "",
"db:generate": "npx prisma generate --schema=./src/db/schema.prisma",
"db:migrate": "npx prisma migrate dev --schema=./src/db/schema.prisma",
"db:reset": "npx prisma migrate reset --schema=./src/db/schema.prisma",
"db:push": "npx prisma db push --schema=./src/db/schema.prisma",
"db:seed": "npx prisma db seed",
"db:studio": "npx prisma studio --schema=./src/db/schema.prisma",
"==================== LINT ====================": "",
"lint": "next lint",
"lint:es": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx ."
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"@mui/styled-engine-sc": "^5.11.0",
"@next/font": "13.1.6",
"@particle-network/auth": "^0.11.6",
"@particle-network/provider": "^0.11.6",
"@prisma/client": "^4.14.0",
"@rainbow-me/rainbowkit": "^0.12.5",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^4.29.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.2.6",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"ethers": "^5.7.2",
"multer": "^1.4.5-lts.1",
"next": "13.1.6",
"nft.storage": "^7.0.3",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-redux": "^8.0.5",
"sanitize-filename": "^1.6.3",
"styled-components": "^5.3.6",
"typescript": "^4.9.4",
"wagmi": "^0.12.10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-redux": "^4.0.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-unicorn": "^45.0.2",
"prisma": "^4.14.0"
},
"peerDependencies": {
"prisma": "^4.14.0"
}
}