-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "@richardev/vue3-boilerplate",
"description": "Quick boilerplate for your next project, containing - Vite, Vuex, Vue Router & Tailwind CSS. This was created as part of my tutorial series.",
"private": false,
"type": "module",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/richardevcom/vue3-boilerplate.git"
},
"scripts": {
"dev": "vite --config='vite.config.dev.mjs'",
"build": "vite build --config='vite.config.prod.mjs'",
"preview": "vite preview --config='./vite.config.prod.mjs'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.4",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"postcss": "^8.4.40",
"prettier": "^3.2.5",
"sass": "^1.77.8",
"tailwindcss": "^3.4.7",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "^7.3.1"
},
"keywords": [
"vue",
"vue3",
"vuejs",
"vue3js",
"boilerplate",
"template",
"router",
"vuerouter",
"vue-router",
"tailwind",
"tailwindcss",
"tailwind-css",
"pinia",
"svg",
"vue 3 boilerplate",
"vue3 boilerplate",
"vue 3 skeleton",
"vue3 skeleton",
"vue 3 starter",
"vue3 starter",
"vue 3 webpack boilerplate",
"vue3 webpack boilerplate",
"vue 3 webpack skeleton",
"vue3 webpack skeleton",
"vue 3 webpack starter",
"vue3 webpack starter",
"vue3 enterprise boilerplate",
"vue 3 enterprise boilerplate",
"vue3 enterprise skeleton",
"vue 3 enterprise skeleton",
"vue3 enterprise starter",
"vue 3 enterprise starter"
],
"author": "richardevcom <hello@richardev.com> (https://github.com/richardevcom/)"
}