-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "pepelac",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"lint:script": "eslint --ext .ts,.js --ignore-path .gitignore .",
"lint:style": "stylelint src/styles/**/*.{css,scss}"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vituum/vite-plugin-twig": "^1.1.0",
"eslint": "~8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"sass": "~1.64.2",
"stylelint": "^16.10.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.9.0",
"typescript": "^5.6.3",
"vituum": "^1.1.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3"
}
}