-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
48
49
{
"name": "csss-site-frontend",
"version": "3.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0",
"npm": ">=9.6.5"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check --minimumFailingSeverity warning",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/mdx": "^7.0.2",
"@astrojs/sitemap": "^3.7.4",
"@astrojs/ts-plugin": "^1.10.10",
"@lucide/astro": "^1.21.0",
"astro": "^7.0.7",
"gsap": "^3.15.0",
"simple-icons": "^16.23.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@eslint/js": "^9.39.4",
"astro-compress": "^2.4.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.12",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"overrides": {
"deepmerge-ts": "8.0.2",
"sharp": "0.35.4",
"svgo": "4.1.0"
}
}