-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "codechaos-website",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"postbuild": "pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"typecheck": "astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run build"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@resvg/resvg-js": "^2.6.2",
"aos": "^2.3.4",
"astro": "^6.1.2",
"gsap": "^3.14.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/aos": "^3.0.7",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"pagefind": "^1.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
}
}