-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.88 KB
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
{
"name": "binabox-elengk",
"version": "1.0.1",
"type": "module",
"scripts": {
"start": "npx forever --no-daemon --plain -c \"npm run dev\" .",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"stylelint": "npx stylelint '**/*.scss'",
"format": "prettier --write \"**/*.{js,json,twig,njk,scss,css,html}\"",
"format:check": "prettier --check \"**/*.{js,json,twig,njk,scss,css,html}\"",
"format:lint": "npm run format && npm run lint:fix",
"prettier": "prettier --write -u 'src/**/*.{njk,twig,js,ts,scss,json}'",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"description": "A project created with @bro-academy/create-vite-bundler",
"devDependencies": {
"@bro-academy/vite-plugin-image-optimizer": "^0.0.2",
"@bro-academy/vite-plugin-svg-sprite": "^0.0.3",
"@destination/prettier-plugin-twig": "^1.5.0",
"@html-eslint/eslint-plugin": "^0.45.0",
"@html-eslint/parser": "^0.40.0",
"@vituum/vite-plugin-nunjucks": "^1.1.0",
"@vituum/vite-plugin-postcss": "^1.1.0",
"@vituum/vite-plugin-twig": "^1.1.0",
"eslint": "^9.26.0",
"forever": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "3.5.3",
"sass-embedded": "^1.88.0",
"stylelint": "^16.19.1",
"stylelint-config-standard-scss": "^15.0.0",
"stylelint-prettier": "^5.0.3",
"vite": "^6.3.5",
"vituum": "^1.2.0"
},
"lint-staged": {
"*.{njk,twig}": [
"prettier --write -u",
"eslint --fix"
],
"*.{js,ts}": [
"prettier --write -u",
"eslint --fix"
],
"*.scss": [
"prettier --write -u",
"stylelint --fix"
],
"src/data/*.json": [
"prettier --write -u"
]
},
"volta": {
"node": "22.14.0"
},
"engines": {
"node": ">=22.14.0",
"npm": ">=9.6.7"
}
}