forked from Uninen/vite-ts-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "vite-ts-tailwind-starter",
"version": "2.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite build && vite preview",
"start": "yarn dev & wait-on tcp:3000 -v",
"test": "vitest",
"test-e2e": "cypress open",
"test-components": "cypress open-ct",
"test:ci": "vitest",
"test:ci-e2e": "cypress run --headless",
"test:ci-components": "cypress run-ct"
},
"dependencies": {
"@vueuse/head": "~0.7",
"pinia": "~2.0",
"vitest": "^0.5.9",
"vue": "~3.2",
"vue-router": "~4.0"
},
"devDependencies": {
"@cypress/vite-dev-server": "~2.2",
"@cypress/vue": "~3.1",
"@pinia/testing": "^0.0.9",
"@tailwindcss/aspect-ratio": "~0.4",
"@tailwindcss/forms": "~0.5",
"@tailwindcss/line-clamp": "~0.3",
"@tailwindcss/typography": "~0.5",
"@typescript-eslint/eslint-plugin": "~5",
"@typescript-eslint/parser": "~5",
"@vitejs/plugin-vue": "~2",
"@vue/eslint-config-standard": "~6.1",
"@vue/eslint-config-typescript": "~10",
"autoprefixer": "~10",
"cypress": "~9.5",
"eslint": "~8.10",
"eslint-config-prettier": "~8.5",
"eslint-plugin-import": "~2",
"eslint-plugin-node": "~11.1",
"eslint-plugin-promise": "~6.0",
"eslint-plugin-vue": "~8",
"postcss": "~8.4",
"postcss-import": "^14.0.2",
"postcss-nesting": "~10",
"tailwindcss": "~3",
"typescript": "~4.6",
"vite": "~2.8",
"wait-on": "~6.0"
}
}