-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "metadata-viewer",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm build:default && pnpm build:standalone && pnpm types:build && tsc-alias -p tsconfig.build.json",
"build:default": "vite build",
"build:standalone": "vite build -c vite.standalone.config.ts",
"dev": "vite",
"dev:standalone": "vite -c vite.standalone.config.ts",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"types:build": "vue-tsc -p tsconfig.build.json",
"types:check": "vue-tsc --noEmit --skipLibCheck --composite false"
},
"dependencies": {
"@tailwindcss/vite": "4.0.0-alpha.16",
"@unhead/vue": "^1.9.14",
"tailwindcss": "4.0.0-alpha.16",
"unhead": "^1.9.14",
"vue": "^3.4.29"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"jsdom": "^24.1.0",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "^7.3.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21"
}
}