-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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
{
"name": "vuedio",
"dependencies": {
"pinia": "^2.1.6",
"vue": "^3.3.4"
},
"devDependencies": {
"@iconify-json/ph": "^1.1.6",
"@iconify/tailwind": "^0.1.3",
"@playwright/test": "^1.37.1",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitejs/plugin-vue": "^4.3.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"daisyui": "^3.6.1",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.17.0",
"lighthouse": "^11.0.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.2",
"vue-tsc": "^1.8.8"
},
"private": true,
"scripts": {
"bench": "vite build && concurrently --kill-others --raw --success first 'vite preview' \"lighthouse --no-enable-error-reporting --chrome-flags='--headless' --output-path lighthouse_report.html http://localhost:4173\"",
"build": "vue-tsc --noEmit && vite build",
"check": "vue-tsc --noEmit",
"dev": "vite dev",
"format": "prettier --check .",
"lint": "eslint --no-fix --ext ts,vue --max-warnings 0 src tests",
"serve": "vite build && vite preview",
"test": "vitest run && playwright test"
},
"type": "module",
"version": "0.2.0"
}