-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"lint-staged": "lint-staged",
"lint": "next lint --ignore-path .gitignore ."
},
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"next": "latest",
"nextjs-progressbar": "^0.0.14",
"nookies": "^2.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-switch": "^6.0.0",
"styled-components": "^5.2.3",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.1",
"@types/node": "15.0.0",
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.js": [
"yarn lint:fix"
],
"*.jsx": [
"yarn lint:fix"
],
"*.ts": [
"yarn lint:fix"
],
"*.tsx": [
"yarn lint:fix"
]
}
}