forked from stuartaccent/vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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": "vue-boilerplate",
"version": "0.0.0",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"build-only": "vite build",
"type-check": "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"
},
"dependencies": {
"vue": "3.2.45",
"vue-router": "4.1.6"
},
"devDependencies": {
"@formkit/vue": "1.0.0-beta.12",
"@picocss/pico": "1.5.6",
"@rushstack/eslint-patch": "1.2.0",
"@types/jsdom": "20.0.1",
"@types/node": "18.11.18",
"@vitejs/plugin-vue": "4.0.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "2.2.7",
"@vue/tsconfig": "0.1.3",
"autoprefixer": "10.4.13",
"axios": "1.2.3",
"cssnano": "5.1.14",
"eslint": "8.32.0",
"eslint-plugin-vue": "9.9.0",
"jsdom": "21.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"prettier": "2.8.3",
"sass": "1.57.1",
"typescript": "4.8.4",
"vite": "4.0.4",
"vite-plugin-rewrite-all": "1.0.1",
"vitest": "0.27.2",
"vue-tsc": "1.0.24"
}
}