-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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": "catlord-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "prettier --check .",
"action-validator": "node scripts/action-validator.mjs",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/react": "^2.1.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/vite-plugin": "^3.8.0",
"astro": "^2.0.18",
"lint-staged": "^13.2.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3"
},
"devDependencies": {
"@action-validator/cli": "^0.5.1",
"@action-validator/core": "^0.5.1",
"@types/lodash": "^4.14.194",
"chalk": "^5.2.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0"
},
"lint-staged": {
"*.{mjs,js,ts,astro,yml,yaml,md}": [
"npm run format",
"npm run lint"
],
".github/workflows/*.{yml,yaml}": [
"npm run action-validator"
]
}
}