-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "unitranslate-web",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit && vite build --mode production",
"build-zip": "rm -rf dist dist.zip &&npm run build && zip dist.zip -r dist",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.6.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"element-plus": "^2.4.2",
"highlight.js": "^11.11.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"remixicon": "^4.6.0",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/crypto-js": "^4.2.1",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.18.13",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/test-utils": "^2.4.2",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.19",
"jsdom": "^22.1.0",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "~5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.22"
}
}