-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 1.25 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 1.25 KB
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
{
"name": "dashboard",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3002",
"lint": "eslint '**/*.{js,ts,tsx}' --fix",
"format": "prettier write ./src"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@hookform/resolvers": "^2.8.4",
"axios": "^0.24.0",
"next": "@latest",
"nookies": "^2.5.2",
"poly-crypto": "^2.0.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hook-form": "^7.21.0",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-router-dom": "^6.0.2",
"react-toastify": "^8.2.0",
"styled-components": "^5.3.3",
"use-media": "^1.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "16.11.9",
"@types/react": "17.0.36",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.27.1",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}