-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "personal-website",
"version": "1.0.0",
"private": true,
"homepage": ".",
"type": "module",
"scripts": {
"build": "vite build",
"postinstall": "patch-package",
"lint": "prettier --write . && eslint . --ext .js,.jsx,.ts,.tsx,.mjs,.cjs,.mts,.cts --max-warnings 0 --fix && tsc --noEmit && git add .",
"lint:ci": "prettier --check . && eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"preview": "vite preview",
"start": "vite"
},
"pre-commit": [
"lint"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"dependencies": {
"@emotion/core": "11.0.0",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mui/lab": "5.0.0-alpha.117",
"@mui/material": "5.11.6",
"aws-sdk": "2.1303.0",
"ga-4-react": "0.1.281",
"history": "5.3.0",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"react-router-dom": "6.8.0"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "1.0.3",
"@trivago/prettier-plugin-sort-imports": "4.0.0",
"@types/lodash": "4.14.191",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"@vitejs/plugin-react": "3.0.1",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"patch-package": "6.5.1",
"postinstall-postinstall": "2.1.0",
"pre-commit": "1.2.2",
"prettier": "2.8.3",
"prettier-plugin-packagejson": "2.4.0",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-tsconfig-paths": "4.0.5"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"engineStrict": true
}