-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·83 lines (83 loc) · 2.56 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
79
80
81
82
83
{
"name": "@scaffold-eth/dapp",
"version": "0.1.1",
"private": true,
"description": "Web3, decentralized app using NextJS, TypeScript, Chakra-UI and ethers.js",
"author": "dCompass Quest",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.1",
"@chakra-ui/react": "^2.1.2",
"@discovery-dao/infini-ui": "^0.0.23",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@ethersproject/providers": "^5.6.8",
"@fontsource/orbitron": "^4.5.6",
"@fontsource/space-mono": "^4.5.8",
"@prisma/client": "4.2.1",
"@tanstack/react-location": "^3.7.4",
"@thirdweb-dev/react": "^2.7.4",
"@thirdweb-dev/sdk": "^2.3.42",
"@types/cookie": "^0.5.1",
"alchemy-sdk": "^2.0.5-rc1",
"axios": "^0.27.2",
"chakra-react-select": "^4.1.4",
"color": "^4.2.3",
"cookie": "^0.5.0",
"ethers": "^5.7.0",
"framer-motion": "^6.3.6",
"json-to-csv-export": "^2.0.2",
"multiparty": "^4.2.3",
"next": "12.1.5",
"next-pwa": "^5.5.2",
"next-seo": "^5.4.0",
"prism-react-renderer": "^1.3.3",
"prismjs": "^1.28.0",
"react": "^18.1.0",
"react-beautiful-dnd": "^13.1.1",
"react-blockies": "^1.4.1",
"react-cool-dimensions": "^2.0.7",
"react-dom": "^18.1.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.34.2",
"react-hot-toast": "^2.3.0",
"react-icons": "^4.4.0",
"swr": "^1.3.0",
"wagmi": "^0.4.6",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/multiparty": "^0.0.33",
"@types/node": "^18.7.14",
"@types/react": "^18.0.10",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-blockies": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"next-sitemap": "^2.5.28",
"prettier": "^2.6.2",
"prisma": "^4.2.1",
"standard-version": "^9.5.0",
"typescript": "^4.7.2"
}
}