-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "vite-boilerpate",
"private": true,
"type": "module",
"pre-commit": [
"lint-format"
],
"browserslist": [
"> 0.2%",
"last 6 version"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint-format": "eslint . --fix && stylelint **/*.{scss,vue} --fix && prettier --write .",
"lint": "eslint . && stylelint **/*.{scss,vue} && prettier --check .",
"upgrade": "node tools/upgrade"
},
"devDependencies": {
"@destination/prettier-plugin-twig": "1.5.0",
"@eslint/markdown": "6.2.2",
"@fastify/pre-commit": "2.2.0",
"@vitejs/plugin-vue": "5.2.1",
"autoprefixer": "10.4.20",
"eslint": "9.20.1",
"eslint-gitignore": "0.1.0",
"eslint-plugin-perfectionist": "4.8.0",
"eslint-plugin-vue": "9.32.0",
"imagescript": "1.3.0",
"pixelperfect-tool": "1.9.2",
"postcss": "8.5.2",
"postcss-html": "1.8.0",
"postcss-scss": "4.0.9",
"postcss-sort-media-queries": "5.2.0",
"postcss-url": "10.1.3",
"prettier": "3.5.0",
"sass-embedded": "1.83.4",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0",
"stylelint-order": "6.0.4",
"svgo": "3.3.2",
"twig": "1.17.1",
"vite": "6.1.0",
"vite-plugin-minify": "2.1.0"
}
}