-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.21 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
{
"name": "simplesign-refactor",
"description": "Refactor exercise insipired in Angular template",
"version": "1.0.0",
"private": true,
"author": "Santiago Aloi <[email protected]> (https://github.com/santiagoaloi/)",
"config": {
"viteConfig": "./vite/vite.config.js"
},
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"dev": "yarn format && vite --config ${npm_package_config_viteConfig}",
"build": "yarn format && vite build --config ${npm_package_config_viteConfig}",
"preview": "yarn build && vite preview --config ${npm_package_config_viteConfig} --open",
"preview:dist": "vite preview --config ${npm_package_config_viteConfig}"
},
"dependencies": {
"@tiptap/extension-color": "^2.0.3",
"@tiptap/extension-highlight": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-task-item": "^2.0.3",
"@tiptap/extension-task-list": "^2.0.3",
"@tiptap/extension-text-style": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@tiptap/vue-3": "^2.0.3",
"@vueuse/core": "^10.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.22",
"pinia-plugin-persistedstate": "^2.4.0",
"remixicon": "^3.2.0",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-router": "^4.1.5",
"vuedraggable": "^4.1.0",
"vuetify": "^3.2.1"
},
"devDependencies": {
"@mdi/js": "6.2.95",
"@rushstack/eslint-patch": "^1.2.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"eslint-plugin-vue": "^9.9.0",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prettier-plugin-vue": "^1.1.6",
"sass": "^1.56.1",
"tailwindcss": "^3.3.1",
"unplugin-auto-import": "^0.14.2",
"unplugin-fonts": "^1.0.3",
"unplugin-vue-components": "^0.22.7",
"unplugin-vue-macros": "^0.11.2",
"vite": "^3.2.5",
"vite-plugin-pages": "^0.26.0",
"vite-plugin-vue-layouts": "^0.7.0",
"vite-plugin-vuetify": "^1.0.0-alpha.12"
}
}