-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export-static": "next export",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && git add -A .",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@walletconnect/web3-provider": "^1.7.1",
"antd": "^4.18.8",
"axios": "^0.26.0",
"ethers": "^5.5.4",
"mobx": "^6.4.2",
"mobx-react": "^7.3.0",
"moment": "^2.29.1",
"next": "12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": "^12.3.4",
"next-with-less": "^2.0.5",
"prettier": "^2.0.2",
"sass": "^1.49.9",
"typescript": "^4.5.5"
}
}