-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 995 Bytes
/
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
{
"name": "portfolio_nextjs",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"color-name": "^1.1.4",
"next": "10.2.3",
"next-seo": "^4.26.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-is": "^17.0.2",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@types/color-name": "^1.1.1",
"@types/react": "^17.0.11",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"husky": ">=6",
"lint-staged": ">=10",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix",
"*.ts": "eslint --cache --fix"
}
}