-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "ToDoApp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:analyze": "ANALYZE=true npm run build",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@next/bundle-analyzer": "^10.0.5",
"@tanstack/react-query": "^4.29.3",
"axios": "^0.21.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"next": "^12.1.6",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-datepicker": "^4.11.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.43.9",
"react-query-kit": "^1.4.1",
"react-toastify": "^9.1.2",
"react-use": "^15.3.8",
"sass": "^1.32.5",
"yup": "^1.1.1"
},
"devDependencies": {
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"postcss": "^8.2.4",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}