-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "spa-ts-vue",
"version": "0.0.0",
"scripts": {
"build": "run-p check build-only",
"build-only": "vite build",
"dev": "vite --host 0.0.0.0",
"preview": "vite preview --host 0.0.0.0 --port 3000",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"test": "vitest run --environment jsdom",
"coverage": "vitest run --environment jsdom --coverage"
},
"dependencies": {
"pinia": "^2.0.14",
"vue": "^3.2.37",
"vue-router": "^4.0.16"
},
"license": "MIT",
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@testing-library/vue": "^6.6.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.39",
"@vitejs/plugin-vue": "^2.3.3",
"@vitest/ui": "^0.15.1",
"c8": "^7.11.3",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.17.0",
"eslint-plugin-vue": "^8.7.1",
"jsdom": "^19.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"tslib": "^2.4.0",
"typescript": "~4.7.3",
"vite": "^2.9.12",
"vitest": "^0.15.1",
"vue-tsc": "^0.35.2"
}
}