-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "simple-resume",
"description": "A pure front-end resume generator.",
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"main": "src/main.tsx",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release": "pnpm run build && gh-pages -d dist"
},
"dependencies": {
"antd": "^5.5.2",
"classnames": "^2.3.2",
"html2pdf.js": "^0.10.1",
"i18next": "^22.5.0",
"js-base64": "^3.7.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.8.1",
"react-to-print": "^2.14.12",
"react-zoom-pan-pinch": "^3.1.0",
"zustand": "^4.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify/react": "^4.1.0",
"@iconify/types": "^2.0.0",
"@types/node": "^18.14.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"typescript": "^4.9.3",
"unocss": "^0.49.7",
"vite": "^4.1.0",
"vite-plugin-html": "^3.2.0"
}
}