-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "evm-box",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"release": "standard-version --no-verify",
"start": "next start",
"prepare": "husky install",
"test": "tsc -p tsconfig.test.json"
},
"author": "izayl@163.com",
"dependencies": {
"@geist-ui/react": "^2.2.5",
"@geist-ui/react-icons": "^1.0.1",
"@supabase/supabase-js": "^1.13.2",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"ethers": "^5.6.5",
"inter-ui": "^3.18.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"next": "^12.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"wagmi": "^0.3.4"
},
"devDependencies": {
"@babel/core": "7",
"@izayl/eslint-config": "^0.3.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/lodash": "^4.14.168",
"@types/node": "12.0.12",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"lint-staged": ">=10",
"standard-version": "^9.3.0",
"typescript": "^4.6.4"
},
"license": "MIT",
"eslintConfig": {
"extends": "@izayl/eslint-config",
"rules": {
"react/react-in-jsx-scope": 0
}
},
"lint-staged": {
"*.(js|ts|tsx)": "eslint --cache --fix"
}
}