-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.38 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
{
"name": "image-generator",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:prod": "vite build --mode production",
"build:dev": "vite build --mode development",
"preview": "vite preview",
"preview:prod": "vite preview --mode production",
"serve": "vite preview",
"start": "vite",
"start:prod": "vite preview --mode production --port 4173",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"type-check": "vue-tsc --noEmit",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build:prod"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.8.2",
"element-plus": "^2.9.6",
"vue": "^3.5.13",
"vue-i18n": "^9.14.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"happy-dom": "^20.1.0",
"terser": "^5.36.0",
"typescript": "^5.3.3",
"vite": "^6.2.0",
"vitest": "^4.0.17",
"vue-tsc": "^1.8.27"
}
}