-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "@example/astro-prolint",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"astro": "astro",
"build": "astro check && tsc --noEmit && astro build",
"check": "astro check && npm run prettier:check",
"dev": "astro dev",
"prepare": "husky install",
"preview": "astro preview",
"start": "astro dev",
"lint:scss": "stylelint \"src/**/*.{astro,scss}\"",
"prettier:check": "prettier --cache --check --plugin-search-dir=. .",
"format": "prettier --cache --write --plugin-search-dir=. ."
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*.{html,json}": "prettier --cache --write --plugin-search-dir=. ."
},
"stackblitz": {
"startCommand": "npm start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.14.0",
"astro": "^3.5.5",
"astro-icon": "^0.8.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss-html": "^1.5.0",
"prettier": "^3.0.0",
"sass": "^1.63.6",
"stylelint": "^15.10.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@tinkoff/stylelint-config": "^1.52.1",
"stylelint-config-standard": "^34.0.0"
}
}