-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "nextjs-typescript-boilerplate",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint . --ext .tsx,.ts,.js --fix"
},
"dependencies": {
"@headlessui/react": "^0.2.0",
"@heroicons/react": "^1.0.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"eslint-plugin-css-modules": "^2.11.0",
"lodash": "^4.17.20",
"next": "10.0.3",
"next-auth": "^3.14.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.4",
"sass": "^1.32.5",
"zod": "^1.11.13"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.0.0",
"@types/classnames": "^2.2.11",
"@types/lodash": "^4.14.165",
"@types/next-auth": "^3.13.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"autoprefixer": "^10.0.4",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"formik": "^2.2.5",
"husky": "^4.3.0",
"postcss": "^8.1.10",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.4",
"typescript": "^4.1.2",
"typescript-plugin-css-modules": "^3.0.1",
"yup": "^0.31.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run type-check && npm run lint"
}
}
}