-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.23 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
{
"name": "vue-frontend-starter",
"version": "1.0.3",
"private": false,
"author": "Oleksandr Zakandaiev",
"authorUrl": "https://github.com/zakandaiev",
"description": "Vue FrontEnd Starter is a boilerplate kit for easy building modern web applications with Vue.js",
"keywords": [
"vue",
"vite",
"builder",
"frontend",
"starter",
"boilerplate",
"kit",
"html",
"css",
"sass",
"scss",
"javascript",
"js",
"es6",
"optimized",
"autoprefixer",
"404",
"grid",
"htaccess",
"robots.txt",
"sitemap.xml",
"favicon"
],
"repository": {
"type": "git",
"url": "https://github.com/zakandaiev/vue-frontend-starter"
},
"type": "module",
"browserslist": [
"last 15 versions",
"not dead"
],
"scripts": {
"dev": "vite dev",
"prod": "vite build",
"build": "vite build",
"preview": "vite preview",
"docs": "vite build --base=/vue-frontend-starter --outDir=./docs",
"lint:js": "eslint ./",
"lint:js:fix": "eslint ./ --fix",
"lint:css": "stylelint ./src/**/*.{sass,scss}",
"lint:css:fix": "stylelint ./src/**/*.{sass,scss} --fix",
"backend": "nodemon backend"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"fastify": "^5.2.1",
"globals": "^15.14.0",
"minimist": "^1.2.8",
"nodemon": "^3.1.9",
"sass": "^1.84.0",
"stylelint": "^16.14.1",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.11.0",
"vite": "^6.1.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-minify": "^2.1.0",
"vite-plugin-vue-devtools": "^7.7.1"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@tabler/icons-vue": "^3.29.0",
"pinia": "^2.3.1",
"reseter.css": "^2.0.0",
"vue": "^3.5.13",
"vue-i18n": "^11.1.0",
"vue-router": "^4.5.0"
},
"overrides": {
"eslint": "^9.19.0"
}
}