forked from DAObiFE/daobi-fe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "daobi-frontend",
"version": "1.0.0",
"description": "Frontend for DAObi smart contracts",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "[email protected]:DAObiFE/daobi-fe"
},
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty": "npx prettier --write ./src",
"prepare": "husky install"
},
"dependencies": {
"ethers": "^5.5.2",
"next": "^12.3.1",
"next-auth": "^4.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"wagmi": "^0.7.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"autoprefixer": "^10.4.1",
"eslint": "8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.11",
"ts-node": "^10.4.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md}": [
"prettier --write"
]
}
}