-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
{
"name": "vite-frontend-starter",
"version": "1.3.0",
"private": false,
"author": "Oleksandr Zakandaiev",
"authorUrl": "https://github.com/zakandaiev",
"description": "Vite FrontEnd Starter is a boilerplate kit for easy building modern static web-sites using Vite builder",
"keywords": [
"vite",
"vituum",
"builder",
"frontend",
"starter",
"boilerplate",
"kit",
"twig",
"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/vite-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=/vite-frontend-starter --outDir=./docs",
"lint:js": "eslint --ext .js,.jsx,.cjs,.mjs --ignore-path .gitignore ./",
"lint:js:fix": "eslint --ext .js,.jsx,.cjs,.mjs --ignore-path .gitignore ./ --fix",
"lint:css": "stylelint ./src/sass/**/*.{sass,scss}",
"lint:css:fix": "stylelint ./src/sass/**/*.{sass,scss} --fix",
"backend": "nodemon backend"
},
"devDependencies": {
"@vituum/vite-plugin-twig": "^1.1.0",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"fastify": "^5.2.1",
"minimist": "^1.2.8",
"nodemon": "^3.1.9",
"sass": "^1.83.1",
"stylelint": "^16.12.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.10.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-minify": "^2.1.0",
"vituum": "^1.1.1"
},
"dependencies": {
"@tabler/icons": "^3.28.1",
"reseter.css": "^2.0.0"
}
}