-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
79 lines (79 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
{
"name": "radicle-explorer",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "vite",
"serve": "vite preview",
"build": "vite build && scripts/copy-katex-assets && scripts/install-twemoji-assets",
"postinstall": "scripts/copy-katex-assets && scripts/install-twemoji-assets",
"check": "scripts/check",
"check:radicle-httpd": "cd radicle-httpd && cargo clippy --all --tests && cargo fmt --all --check",
"format": "npx prettier '**/*.@(ts|js|svelte|json|css|html|yml)' --write",
"test:unit": "TZ='UTC' vitest run",
"test:e2e": "NODE_CONFIG_ENV='test' TZ='UTC' playwright test",
"test:http-client:unit": "NODE_CONFIG_ENV='test' TZ='UTC' vitest run --config http-client/vite.config.ts --reporter verbose",
"test:radicle-httpd": "cd radicle-httpd && cargo test --all-features"
},
"type": "module",
"engines": {
"node": ">=18.17.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@playwright/test": "^1.47.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/config": "^3.3.5",
"@types/dompurify": "^3.0.5",
"@types/katex": "^0.16.7",
"@types/lodash": "^4.17.9",
"@types/md5": "^2.3.5",
"@types/node": "^20.14.12",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/parser": "^8.7.0",
"chalk": "^5.3.0",
"config": "^3.3.12",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.0",
"execa": "^9.4.0",
"get-port": "^7.1.0",
"globals": "^15.9.0",
"happy-dom": "^15.7.4",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte-check": "^4.0.2",
"svelte-eslint-parser": "^0.41.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7",
"vite-plugin-virtual": "^0.3.0",
"vitest": "^2.1.1",
"wait-on": "^8.0.1"
},
"dependencies": {
"@radicle/gray-matter": "4.1.0",
"@wooorm/starry-night": "^3.5.0",
"async-mutex": "^0.5.0",
"baconjs": "^3.0.19",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"compare-versions": "^6.1.1",
"dompurify": "^3.1.6",
"fuzzysort": "^3.0.2",
"hast-util-to-dom": "^4.0.0",
"hast-util-to-html": "^9.0.3",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"marked": "^14.1.2",
"marked-emoji": "^1.4.2",
"marked-footnote": "^1.2.4",
"marked-katex-extension": "^5.1.2",
"marked-linkify-it": "^3.1.11",
"md5": "^2.3.0",
"svelte": "^4.2.19",
"twemoji": "^14.0.2",
"zod": "^3.23.8"
}
}