-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ethanify-me",
"version": "2.0.0",
"resume_version": "2026.mar.27",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ethan605/ethan605.github.io.git"
},
"homepage": "https://ethan605.github.io",
"scripts": {
"postinstall": "[ \"$NODE_ENV\" = production ] || husky install",
"prebuild": "[ \"$NODE_ENV\" = production ] || npm run lint",
"vite": "VITE_GIT_SHA=$(git rev-parse --short HEAD) vite",
"build": "npm run vite build",
"postbuild": "cp dist/index.html dist/200.html",
"eslint": "eslint src/**/*.ts*",
"prettier": "prettier --write .",
"lint": "concurrently tsc npm:eslint npm:prettier",
"dev": "VITE_CANONICAL_URL=https://ethanify.dev npm run vite",
"preserve": "VITE_CANONICAL_URL=https://ethanify.dev npm run build --omit=dev",
"serve": "vite preview",
"gen-resume": "./scripts/gen-resume.sh"
},
"dependencies": {
"@vitejs/plugin-react-swc": "^3.3.1",
"prettier": "^3.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-feather": "^2.0.8",
"react-router-dom": "^6.2.1",
"sha256": "^0.2.0",
"styled-components": "^5.3.11",
"styled-normalize": "^8.0.7",
"vite": "^4.3.7",
"vite-plugin-pwa": "^0.17.4",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/md5": "^2.3.2",
"@types/node": "^20.1.7",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-router-dom": "^5.1.7",
"@types/sha256": "^0.2.0",
"@types/styled-components": "^5.1.7",
"@types/webfontloader": "^1.6.32",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"concurrently": "^8.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"lint-staged": "^15.2.0",
"source-map-explorer": "^2.5.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"./**/*.(ts|tsx|json)": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}