-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.17 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
{
"name": "51-resume-design",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"postinstall": "husky install"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.0.2",
"@codemirror/lang-json": "^6.0.0",
"@codemirror/theme-one-dark": "^6.0.0",
"@element-plus/icons-vue": "^2.1.0",
"axios": "0.26.1",
"c-scrollbar": "^1.0.2",
"colorpicker-v3": "^2.10.2",
"element-plus": "2.3.4",
"html2canvas": "^1.4.1",
"jspdf": "^1.4.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"pinia": "^2.0.36",
"vue": "^3.3.2",
"vue-router": "^4.2.0",
"vue-uuid": "^3.0.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/axios": "^0.14.0",
"@types/jspdf": "^2.0.0",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"consola": "^3.2.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup-plugin-external-globals": "^0.8.0",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.62.1",
"terser": "^5.18.2",
"typescript": "~5.0.4",
"unplugin-auto-import": "^0.16.4",
"unplugin-element-plus": "^0.7.1",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.3.5",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-prerender": "^1.0.8",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^1.6.4"
},
"lint-staged": {
"*.{vue,js}": [
"npm run lint"
]
},
"peerDependencies": {
"codemirror": "6.x"
}
}