-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vite-vue",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --open",
"dev:force": "run-s clear \"dev -- --force\"",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "npm run vitest -- --run",
"test:unit:watch": "npm run vitest -- --coverage.all --ui",
"test:e2e": "playwright test",
"test:e2e:watch": "npm run test:e2e -- --ui",
"build-only": "vite-ssg build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint \"**/*.{js,cjs,mjs,ts,tsx,vue}\" --fix --ignore-path .gitignore",
"format": "prettier --write . -l -u --no-error-on-unmatched-pattern",
"lf": "run-p lint format",
"prepare": "husky install",
"vitest": "vitest --coverage.enabled",
"clear": "rimraf dist .vite-ssg-temp types test-results playwright-report"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"@vueuse/head": "^1.1.26",
"dotenv": "^16.1.4",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@babel/parser": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nuxt/devalue": "^2.0.2",
"@playwright/test": "^1.35.0",
"@rushstack/eslint-patch": "^1.3.1",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.16",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-c8": "^0.32.0",
"@vitest/coverage-v8": "^0.32.0",
"@vitest/ui": "^0.32.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.14",
"critters": "^0.0.16",
"env-cmd": "^10.1.0",
"eslint": "^8.42.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"eslint-plugin-vue": "^9.14.1",
"happy-dom": "^9.20.3",
"husky": "^8.0.3",
"jsdom": "^21.1.2",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"sass": "^1.63.3",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"unplugin-vue-router": "^0.6.4",
"vite": "^4.3.9",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-ssg": "^0.22.2",
"vite-ssg-sitemap": "^0.5.1",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.32.0",
"vue-tsc": "^1.6.5"
}
}