-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "app",
"author": "Pszz",
"version": "1.0.0",
"private": true,
"license": "",
"scripts": {
"dev": "next",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"prettier": "prettier -c --write \"**/*\"",
"lint": "eslint ./src/**/*.{ts,tsx}"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@mui/material": "^5.10.8",
"@mui/material-nextjs": "^5.15.11",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@emotion/cache": "^11.11.0",
"@emotion/server": "^11.11.0",
"connectkit": "^1.7.2",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@tanstack/react-query": "^5.27.5",
"viem": "2.x",
"wagmi": "^2.5.7"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@next/eslint-plugin-next": "^12.3.1",
"@svgr/webpack": "^6.5.1",
"@types/node": "^14.6.0",
"@types/react": "^18.0.8",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-plugin-import": "^1.13.5",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "^8.14.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"npm-force-resolutions": "^0.0.10",
"prettier": "^2.6.2",
"typescript": "^5.4.5",
"url-loader": "^4.1.1"
}
}