-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 956 Bytes
/
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
{
"name": "developer-dao-frontend",
"description": "Frontend interface for Developer DAO - Devs for Revolution.",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"lint-staged": {
"*.{js,ts,tsx,html,css,json,md}": "prettier --write"
},
"dependencies": {
"@0xcert/ethereum-erc721": "^2.4.0",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"ethers": "^5.4.6",
"framer-motion": "^4.1.17",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.0.0",
"web3": "^1.5.2"
},
"devDependencies": {
"@types/react": "^17.0.20",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
}
}