-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
51 lines (51 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "datapackage.org",
"type": "module",
"version": "2.0",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "astro build",
"clean": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' +",
"format": "eslint --fix . && prettier --write .",
"generate": "vite-node generate.ts",
"lint": "eslint . && prettier --check .",
"prepare": "husky",
"preview": "npm run build && astro preview --open --port 8080",
"profiles": "vite-node profiles/build.ts",
"start": "astro dev --open --port 8080",
"update": "ncu -u",
"test": "npm run lint",
"type": "tsc"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "11.6.4",
"@astrojs/markdown-remark": "5.1.1",
"@astrojs/starlight": "0.28.3",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/fs-extra": "11.0.4",
"@types/js-yaml": "4.0.9",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"astro": "4.16.6",
"eslint": "8.57.0",
"eslint-plugin-astro": "1.2.2",
"fs-extra": "11.2.0",
"glob": "10.4.2",
"husky": "9.1.6",
"js-yaml": "4.1.0",
"npm-check-updates": "16.14.20",
"prettier": "3.3.2",
"prettier-plugin-astro": "0.14.0",
"rehype-autolink-headings": "7.1.0",
"remark-custom-heading-id": "2.0.0",
"replace-in-file": "8.2.0",
"starlight-blog": "0.14.1",
"starlight-links-validator": "0.9.0",
"typescript": "5.5.4",
"vanilla-back-to-top": "7.2.1",
"vite-node": "2.1.3"
}
}