-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "mantine-frontend-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit --incremental false",
"format": "prettier --write .",
"lint": "next lint",
"lint-fix": "eslint --fix . --ext .ts,.tsx,.js,.jsx"
},
"dependencies": {
"@mantine/core": "^5.9.2",
"@mantine/hooks": "^5.9.2",
"@mantine/next": "^5.9.2",
"ethers": "^5.7.2",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0",
"wagmi": "^0.8.10"
},
"devDependencies": {
"@types/node": "18.11.11",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"eslint": "8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "4.9.3"
}
}