-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.88 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"type": "module",
"name": "vuilerplate",
"private": true,
"version": "0.0.3",
"scripts": {
"build": "vue-tsc --noEmit && MODE=production vite-ssg build",
"coverage": "vitest run --coverage",
"dev": "vite",
"lint:js": "eslint . --ext .js,.ts,.vue",
"lint:style": "stylelint '**/*.{scss,css,vue}'",
"lint": "pnpm lint:js && pnpm lint:style",
"release:stg": "standard-version -s -a --prerelease beta && git push --follow-tags",
"release:prod": "standard-version -s -a && git push --follow-tags",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "cypress open",
"prepare": "husky install",
"typecheck": "vue-tsc --noEmit"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --ext .js,.ts,.vue --fix",
"pnpm vitest related --run"
],
"*.{scss,vue}": "stylelint --fix"
},
"dependencies": {
"@unocss/reset": "0.47.5",
"@vueuse/core": "9.1.1",
"@vueuse/head": "0.9.8",
"@vueuse/schema-org": "1.0.2",
"pinia": "2.0.22",
"prism-theme-vars": "0.2.4",
"vue": "3.2.40",
"vue-i18n": "9.2.2",
"vue-router": "4.1.5"
},
"devDependencies": {
"@antfu/eslint-config": "0.27.0",
"@iconify-json/carbon": "1.1.11",
"@intlify/eslint-plugin-vue-i18n": "2.0.0",
"@intlify/vite-plugin-vue-i18n": "6.0.3",
"@pinia/testing": "0.0.14",
"@testing-library/cypress": "8.0.7",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/vue": "6.6.1",
"@typescript-eslint/parser": "5.40.0",
"@vitejs/plugin-vue": "3.1.0",
"@vitejs/plugin-vue-jsx": "2.0.1",
"@vue/test-utils": "2.1.0",
"c8": "7.12.0",
"critters": "0.0.16",
"cypress": "10.9.0",
"eslint": "8.27.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-vue": "9.6.0",
"happy-dom": "6.0.4",
"husky": "8.0.2",
"jsdom": "20.0.0",
"lint-staged": "13.0.3",
"markdown-it": "13.0.1",
"markdown-it-prism": "2.3.0",
"postcss": "8.4.17",
"postcss-html": "1.5.0",
"postcss-import": "14.1.0",
"postcss-nested": "5.0.6",
"postcss-url": "10.1.3",
"rollup-plugin-visualizer": "5.8.3",
"standard-version": "9.5.0",
"stylelint": "14.13.0",
"stylelint-config-recommended-vue": "1.4.0",
"typescript": "4.8.4",
"unocss": "0.45.26",
"unplugin-auto-import": "0.11.2",
"unplugin-vue-components": "0.22.8",
"vite": "3.0.9",
"vite-plugin-compression": "0.5.1",
"vite-plugin-istanbul": "3.0.1",
"vite-plugin-pages": "0.26.0",
"vite-plugin-pwa": "0.13.1",
"vite-plugin-vue-layouts": "0.7.0",
"vite-plugin-vue-markdown": "0.21.1",
"vite-ssg": "0.21.1",
"vite-ssg-sitemap": "0.4.3",
"vite-svg-loader": "3.6.0",
"vitest": "0.23.4",
"vue-eslint-parser": "9.1.0",
"vue-tsc": "0.40.13"
}
}