-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1019 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1019 Bytes
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
{
"name": "falkner-editorial-onepager",
"private": true,
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"postbuild": "node scripts/emit-pages-csp.mjs",
"preview": "astro preview",
"format": "prettier . --check",
"format:write": "prettier . --write",
"check": "astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/sitemap": "3.7.2",
"@tabler/icons-sprite": "3.41.1",
"astro": "^6.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@eslint/js": "^10.0.0",
"@tailwindcss/vite": "^4.1.18",
"eslint": "^10.0.0",
"eslint-plugin-astro": "^1.2.0",
"globals": "^17.0.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vite": "7.3.2"
},
"overrides": {
"vite": "7.3.2"
},
"engines": {
"node": ">=22.12.0"
}
}