-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
62
63
64
65
{
"name": "my-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"@heroicons/react": "^1.0.1",
"clsx": "^1.1.1",
"fuse.js": "^6.4.6",
"js-cookie": "^3.0.1",
"next": "10.2.0",
"next-seo": "^4.28.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-grid-system": "^7.1.2",
"react-query": "^3.16.0",
"react-switch": "^6.0.0",
"sass": "^1.32.13"
},
"devDependencies": {
"@types/eslint": "^7.28.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/js-cookie": "^2.2.7",
"@types/prettier": "^2.4.0",
"@types/react": "^17.0.5",
"@types/react-dom": "17.0.2",
"@types/sass": "^1.16.1",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
}
}