-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
48
49
50
51
52
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@hookform/resolvers": "^2.8.8",
"classnames": "^2.3.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"lodash": "^4.17.21",
"next": "12",
"next-auth": "^4.3.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-hook-form": "^7.30.0",
"react-use": "^17.3.2",
"sweetalert2": "^11.4.8",
"sweetalert2-react-content": "^5.0.0",
"swr": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"eslint-config-next": "^12.1.5",
"postcss": "^8.4.12",
"postcss-preset-env": "^7.4.3",
"tailwindcss": "^3.0.24"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format"
}
},
"lint-staged": {
"*.+(js|jsx)": "eslint --fix",
"*.+(json|css|md)": "prettier --write"
}
}