-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 KB
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
{
"name": "vite-ts-tailwind-starter",
"version": "4.3.0",
"scripts": {
"dev": "cross-env DEBUG=0 vite",
"build": "vite build",
"preview": "vite build && vite preview",
"start": "pnpm dev & wait-on tcp:3000 -v",
"test": "vitest",
"coverage": "vitest run --coverage",
"test-e2e": "playwright test --headed",
"test:ci": "vitest run --coverage",
"test:ci-e2e": "playwright test",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false"
},
"dependencies": {
"@vueuse/head": "2.0.0",
"pinia": "2.1.7",
"tesseract.js": "^5.0.3",
"vue": "3.3.8",
"vue-router": "4.2.5"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.4.0",
"@iconify/json": "2.2.142",
"@iconify/types": "2.0.0",
"@pinia/testing": "0.1.3",
"@playwright/test": "1.40.0",
"@rushstack/eslint-patch": "1.5.1",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/line-clamp": "0.4.4",
"@tailwindcss/typography": "0.5.10",
"@types/jsdom": "21.1.5",
"@types/lodash-es": "4.17.11",
"@types/node": "20.9.1",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"@vitejs/plugin-vue": "4.5.0",
"@vitest/coverage-v8": "0.34.6",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/test-utils": "2.4.2",
"@vue/tsconfig": "0.4.0",
"autoprefixer": "10.4.16",
"cross-env": "^7.0.3",
"cssnano": "6.0.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-vue": "9.18.1",
"jsdom": "22.1.0",
"lodash-es": "4.17.21",
"postcss": "8.4.31",
"postcss-import": "15.1.0",
"postcss-nesting": "12.0.1",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"unplugin-auto-import": "0.16.7",
"unplugin-vue-components": "0.25.2",
"vite": "5.0.0",
"vitest": "0.34.6",
"vue-tsc": "1.8.22",
"wait-on": "7.2.0"
}
}