-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 KB
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
{
"name": "lig-astro-static-template",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"lint:check": "npm run lint:html && npm run lint:style && npm run lint:es",
"lint:html": "markuplint 'src/**/*.{html,astro}'",
"lint:es": "eslint 'src/**/*.{js,astro}'",
"lint:style": "stylelint 'src/**/*.{css,scss,astro}'",
"lint:fix": "stylelint --fix 'src/**/*.{css,scss,astro}' && eslint --fix 'src/**/*.{js,astro}'",
"format": "prettier --write 'src/**/*.{html,css,scss,js,json,astro}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{html,astro}": "markuplint",
"*.{js,astro}": "eslint --fix",
"*.{css,scss,astro}": "stylelint --fix",
"*.{html,css,scss,js,json,astro}": "prettier --write"
},
"devDependencies": {
"@astrojs/sitemap": "^3.0.1",
"@markuplint/astro-parser": "^3.9.1",
"@typescript-eslint/parser": "^6.7.0",
"astro": "^3.3.1",
"astro-icon": "^0.8.1",
"eslint": "^8.49.0",
"eslint-plugin-astro": "^0.29.0",
"glob": "^10.3.5",
"gsap": "^3.12.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"markuplint": "^3.12.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"sass": "^1.67.0",
"sharp": "^0.32.6",
"stylelint": "^15.10.3",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-prettier": "^3.0.0"
}
}