-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vuetify3-template",
"version": "0.0.0-development",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite-ssg build",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"test:e2e": "start-server-and-test preview :4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier . --write --ignore-path .gitignore",
"prepare": "husky install",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"@mdi/font": "^7.2.96",
"@tiptap/pm": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@tiptap/vue-3": "^2.0.3",
"@vueuse/core": "^9.13.0",
"apexcharts": "^3.37.3",
"pinia": "^2.0.33",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue3-apexcharts": "^1.4.1",
"vuetify": "^3.1.13"
},
"devDependencies": {
"@iconify-json/iconoir": "^1.1.25",
"@intlify/vite-plugin-vue-i18n": "^7.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@unocss/preset-icons": "^0.50.6",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.1.3",
"@vueuse/head": "^1.1.23",
"cypress": "^12.9.0",
"eslint": "^8.37.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"pathe": "^1.1.0",
"prettier": "^2.8.7",
"start-server-and-test": "^2.0.0",
"typescript": "~5.0.3",
"unocss": "^0.50.6",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-router": "^0.5.4",
"vite": "^4.2.3",
"vite-plugin-dts": "^2.2.0",
"vite-plugin-pages": "^0.29.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-ssg": "^0.22.1",
"vitest": "^0.29.8",
"vue-tsc": "^1.2.0"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{js,ts,vue,css,scss,json,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/boussadjra/vuetify-3-template.git"
},
"license": "MIT"
}