-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
50
51
52
{
"name": "expressjs-astro-project",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run format:check && npm run lint",
"fix": "npm run format && npm run lint:fix"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"astro": "^5.18.0",
"astro-expressive-code": "^0.41.7",
"astro-icon": "^1.1.5"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=11.0.0",
"onFail": "error"
}
},
"devDependencies": {
"@csstools/postcss-global-data": "^4.0.0",
"@eslint/js": "^9.39.2",
"@iconify-json/fluent": "^1.2.38",
"@types/node": "^25.3.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"lint-staged": "^16.2.7",
"postcss-custom-media": "^12.0.0",
"postcss-nested": "^7.0.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}