-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
52
{
"name": "audioguides-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext ts --ext astro",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(astro)\"",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"yarn lint --fix"
],
"*.{css,sass}": [
"stylelint --fix"
]
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/ts-plugin": "^1.9.1",
"astro": "^4.13.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"sass": "^1.77.8",
"sharp": "^0.33.4",
"swiper": "^11.1.9",
"typescript": "^5.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.8.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-sass-guidelines": "^12.0.0"
}
}