-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "next_js_boilerplate_2022",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"lint": "eslint .",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@hookform/resolvers": "2.8.8",
"@reduxjs/toolkit": "1.8.1",
"@sentry/nextjs": "6.18.0",
"classnames": "2.3.1",
"lodash": "4.17.21",
"next": "12.0.10",
"next-seo": "5.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.28.1",
"react-redux": "7.2.7",
"react-use": "17.3.2",
"redux": "4.1.2",
"sass": "1.49.7",
"yup": "0.32.11"
},
"devDependencies": {
"@next/eslint-plugin-next": "12.0.10",
"@types/lodash": "4.14.178",
"@types/node": "17.0.16",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.3",
"prettier": "2.5.1",
"typescript": "4.5.5",
"webpack-auto-export": "0.1.0"
}
}