-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
42
43
44
45
46
47
48
{
"name": "flyer",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"predeploy": "npm run build-only",
"deploy": "cpy dist/index.html . --rename=404.html && gh-pages -d dist",
"type-check": "vue-tsc --build --force",
"test": "vitest"
},
"dependencies": {
"@panzoom/panzoom": "^4.5.1",
"@vueuse/core": "^10.8.0",
"date-fns": "^3.3.1",
"html2canvas": "^1.4.1",
"pinia": "^2.1.7",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primevue": "^3.51.0",
"uuid": "^9.0.1",
"vue": "^3.4.15",
"vue-i18n": "^9.9.1",
"vue-router": "^4.2.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@testing-library/vue": "^8.0.2",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.10",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/tsconfig": "^0.5.1",
"cpy-cli": "^5.0.0",
"gh-pages": "^6.1.1",
"happy-dom": "^13.6.2",
"npm-run-all2": "^6.1.1",
"typescript": "~5.3.0",
"vite": "^5.0.11",
"vite-plugin-mkcert": "^1.17.3",
"vitest": "^1.3.1",
"vue-tsc": "^1.8.27"
}
}