-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
46
47
{
"name": "dbtlr-com",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"deploy": "wrangler pages deploy ./dist",
"check": "pnpm typecheck && pnpm lint",
"lint": "eslint --max-warnings=0 --cache --cache-location ./node_modules/.cache/eslint .",
"logs": "pnpm wrangler pages deployment tail",
"typecheck": "astro check",
"typegen": "wrangler types",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,astro}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
]
},
"dependencies": {
"@astrojs/check": "0.9.6",
"@astrojs/cloudflare": "12.6.12",
"@fontsource/inter": "^5.1.0",
"@iconify-json/lucide": "^1.2.87",
"@tailwindcss/vite": "^4.0.0",
"astro": "^5.16.15",
"astro-icon": "^1.1.5",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241218.0",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.2.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"prettier-plugin-astro": "^0.14.1",
"wrangler": "^3.95.0"
},
"engines": {
"node": ">=18.0.0"
}
}