-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.58 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
{
"name": "vite-js",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"html:lint": "markuplint \"src/**/{*.pug,*.html}\"",
"style:lint": "stylelint \"src/**/*.scss\"",
"es:lint": "eslint \"src/**/*.js\"",
"lint": "pnpm run html:lint && npm run style:lint -- --fix && npm run es:lint -- --fix",
"dev": "vite --host",
"build": "vite build && html-beautify dist/**/*.html && esbuild src/assets/js/*.js --bundle --minify --outdir=dist/assets/js/",
"preview": "pnpm run lint && vite preview"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "github:nabla/vite-plugin-eslint",
"autoprefixer": "^10.4.14",
"css-declaration-sorter": "^7.0.2",
"esbuild": "^0.25.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"globule": "^1.3.4",
"js-beautify": "^1.14.9",
"markuplint": "^3.12.0",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.0.0",
"sass": "^1.65.1",
"stylelint": "15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.0",
"stylelint-scss": "^5.0.1",
"vite": "^5.4.12",
"vite-js": "link:",
"vite-plugin-handlebars": "^1.6.0",
"vite-plugin-rewrite-all": "^1.0.1"
}
}