-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.21 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": "resume",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "A markdown online resume generation tool.",
"author": "doyuli (https://github.com/doyuli)",
"license": "MIT",
"keywords": [
"resume",
"markdown",
"markdown-resume"
],
"engines": {
"node": "^20.18.0"
},
"scripts": {
"dev": "vite",
"dev:node": "tsx watch service/index.ts",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build",
"compile:theme": "sass themes:src/themes/styles --no-source-map --style=compressed --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.4.0",
"@codemirror/view": "^6.38.5",
"@vueuse/core": "^13.6.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0",
"pinia": "^3.0.3",
"vue": "^3.5.18",
"vue-codemirror-plus": "^0.0.8",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@tsconfig/node22": "^22.0.2",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-emoji": "^3.0.1",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/tsconfig": "^0.7.0",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"eslint": "^9.31.0",
"eslint-plugin-format": "^1.0.1",
"express": "^5.1.0",
"lint-staged": "^16.1.5",
"npm-run-all2": "^8.0.4",
"picocolors": "^1.1.1",
"prettier": "3.6.2",
"puppeteer-core": "^24.16.2",
"sass": "^1.90.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.20.4",
"typescript": "~5.8.0",
"unplugin-vue-router": "^0.15.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.0",
"vue-tsc": "^3.0.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}