-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "frontend",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "astro check",
"astro": "astro",
"eslint": "eslint .",
"eslint:fix": "eslint --fix . && exit 0",
"stylelint": "stylelint './src/**/*.scss' './src/**/*.astro'",
"stylelint:fix": "stylelint './src/**/*.scss' './src/**/*.astro' --fix",
"lint:all": "eslint . && stylelint './src/**/*.scss' './src/**/*.astro'"
},
"dependencies": {
"@astrojs/sitemap": "^3.1.6",
"astro": "^4.15.4",
"debounce": "^2.1.0",
"detect-browser": "^5.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-prettier": "^5.1.3",
"lefthook": "^1.6.15",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.71.1",
"stylelint": "^16.6.1",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"typescript": "^5.4.5"
}
}