-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "algorand-devportal",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "pnpm run import:all && astro check && astro build",
"lint": "eslint . && prettier -c ./src/** && astro check",
"preview": "astro preview",
"astro": "astro",
"init:submodules": "git submodule update --init",
"import:all": "pnpm run init:submodules && pnpm run import:nodekit",
"import:nodekit": "npx tsx imports/scripts/nodekit.ts && prettier --write src/content/docs/nodes/nodekit-reference/",
"init:poetry": "cd imports/build/python && poetry install",
"import:utils-ts": "cd imports/repos/algokit-utils-ts && npm install",
"import:algorand-python": "cd imports/build/python && make puya",
"import:utils-py": "cd imports/build/python && make utils",
"import": "pnpm run init:poetry && pnpm run init:submodules && pnpm run import:utils-ts && pnpm run import:algorand-python && pnpm run import:utils-py"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^5.3.0",
"@astrojs/starlight": "^0.28.6",
"@astrojs/starlight-tailwind": "^2.0.3",
"@astrojs/tailwind": "^5.1.2",
"@catppuccin/palette": "^1.2.0",
"@catppuccin/vscode": "^3.15.1",
"@expressive-code/plugin-line-numbers": "^0.35.3",
"astro": "^4.16.9",
"astro-d2": "^0.3.0",
"astro-icon": "^1.1.0",
"astro-rehype-relative-markdown-links": "^0.17.0",
"astro-remote": "^0.3.3",
"marked": "^13.0.1",
"prismjs": "^1.29.0",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"sharp": "^0.32.5",
"starlight-image-zoom": "^0.7.0",
"starlight-links-validator": "^0.12.1",
"starlight-typedoc": "^0.17.0",
"tailwindcss": "^3.4.4",
"typedoc": "^0.27.3",
"typedoc-plugin-markdown": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"pnpm": "^9.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.19.2",
"typescript": "^5.5.2",
"typescript-eslint": "^8.4.0"
},
"engines": {
"node": ">=18",
"pnpm": "^9.0.0"
}
}