-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "portfolio",
"homepage": "https://hawkeye-sama.github.io/portfolio",
"version": "1.0.4",
"private": true,
"dependencies": {
"dayjs": "^1.10.6",
"react": "^18.2.0",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-text-loop": "^2.3.0",
"styled-components": "^5.2.3"
},
"resolutions": {
"@types/react": "^17.0.53"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"launch": "./deploy.sh",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"lint:check": "eslint src --ext=.js,.jsx,.ts,.tsx",
"lint": "yarn lint:check --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^3.1.0",
"prettier": "^2.8.4",
"react-app-rewired": "^2.1.8",
"typescript": "^4.9.5"
}
}