-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.53 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
49
50
51
52
{
"name": "vaunch",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test": "vitest --run --environment jsdom",
"coverage": "vitest --run --environment jsdom --coverage",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"postinstall": "tsx tools/setupScript.ts",
"start": "serve dist"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.1.2",
"@vueuse/core": "^11.0.0",
"fuse.js": "^7.0.0",
"npm": "^10.8.2",
"npm-run-all": "^4.1.5",
"pinia": "^2.2.2",
"tippy.js": "^6.3.7",
"vue": "^3.4.38",
"vue-router": "^4.4.3",
"vue3-click-away": "^1.2.4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@types/decompress": "^4.2.7",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.3.0",
"@vitest/ui": "^2.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"c8": "^10.1.2",
"decompress": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "~5.5.4",
"vite": "^5.4.1",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.29"
}
}