-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "astro-template",
"type": "module",
"engines": {
"node": "~20.17.0"
},
"version": "1.0.1",
"scripts": {
"dev": "run-p dev:*",
"dev:astro": "astro dev",
"dev:indexer": "npm run indexer -- -w",
"start": "astro dev",
"build": "npm run indexer && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "npm run lint:markup && lint:script && npm run lint:style",
"lint:fix": "npm run lint:markup --fix && lint:script --fix && npm run lint:style --fix",
"lint:markup": "markuplint './src/**/*.{html,astro}'",
"lint:script": "eslint .",
"lint:style": "stylelint \"./src/**/*.{astro,tsx,scss,css}\"",
"typecheck": "tsc --noEmit",
"indexer": "image-indexer -d ./src/assets/images -o ./src/assets/images.ts",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@iwbc/sass-utils": "^0.4.0",
"astro": "^4.15.9",
"astro-html-beautifier": "^1.0.4",
"astro-icon": "^1.1.1",
"ismobilejs": "^1.1.1",
"throttle-debounce": "^5.0.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@iwbc/image-indexer": "^0.1.0",
"@markuplint/astro-parser": "^4.6.7",
"@markuplint/ml-config": "^4.7.4",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/throttle-debounce": "^5.0.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markuplint": "^4.9.4",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.7.0",
"sass-embedded": "^1.79.3",
"stylelint": "^16.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^13.1.0",
"typescript-eslint": "^8.7.0"
}
}