-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 KB
/
package.json
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
{
"name": "fiscal.datapackage.org",
"type": "module",
"version": "1.0.0",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "astro build && node build.js",
"clean": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' +",
"format": "eslint --fix . && prettier --write .",
"generate": "astro sync",
"lint": "eslint . && prettier --check .",
"preview": "astro preview --port 8080",
"start": "astro dev --open --port 8080",
"test": "npm run lint",
"update": "ncu -u"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@astrojs/markdown-remark": "^4.3.2",
"@astrojs/starlight": "0.21.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"astro": "4.5.10",
"eslint": "8.57.0",
"eslint-plugin-astro": "0.33.1",
"fs-extra": "11.2.0",
"glob": "10.3.10",
"js-yaml": "4.1.0",
"npm-check-updates": "16.14.18",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"rehype-autolink-headings": "^7.1.0",
"typeface-hk-grotesk": "1.0.0"
}
}