-
Notifications
You must be signed in to change notification settings - Fork 3
/
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-starter-strict",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "git clean --interactive -dx --exclude .env.local --exclude \".env.*.local\" --exclude node_modules/ --exclude .husky/",
"lint": "npm-run-all --parallel lint:astro lint:js+ts lint:format lint:types",
"lint:astro": "astro check",
"lint:js+ts": "eslint --ext .astro,.js,.jsx,.cjs,.ts,.tsx,.cts --ignore-path .gitignore .",
"lint:format": "prettier --check .",
"lint:types": "tsc --noEmit",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:js+ts": "pnpm run lint:js+ts --fix",
"lint:fix:format": "prettier --write ."
},
"dependencies": {
"@astrojs/mdx": "1.1.4",
"@astrojs/tailwind": "5.0.2",
"astro": "3.5.3",
"tailwindcss": "3.3.5"
},
"devDependencies": {
"@astrojs/check": "0.3.1",
"@types/node": "20.9.0",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.53.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-astro": "0.29.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-regexp": "2.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tailwindcss": "3.13.0",
"husky": "8.0.3",
"nano-staged": "0.8.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"prettier-plugin-astro": "0.12.2",
"prettier-plugin-tailwindcss": "0.5.7",
"typescript": "5.2.2"
},
"packageManager": "pnpm@8.10.4",
"nano-staged": {
"*": "prettier --write --ignore-unknown",
"*.{astro,js,jsx,cjs,ts,tsx,cts}": "eslint --fix"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
}
}
}