-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 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
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
{
"name": "rustledger-website",
"version": "1.0.0",
"description": "rustledger website and WASM playground",
"type": "module",
"scripts": {
"dev": "vite --port 8080",
"build": "vite build",
"preview": "vite preview --port 8080",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"rustfava:dev": "vitepress dev rustfava-docs",
"rustfava:build": "vitepress build rustfava-docs",
"rustfava:preview": "vitepress preview rustfava-docs",
"pta:dev": "vitepress dev pta-standards-docs",
"pta:build": "vitepress build pta-standards-docs",
"pta:preview": "vitepress preview pta-standards-docs",
"all:dev": "vitepress dev docs --port 5173 & vitepress dev rustfava-docs --port 5174 & vitepress dev pta-standards-docs --port 5175 & wait",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"vitepress": "^1.6.3",
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/vite": "^4.1.18",
"@types/d3": "^7.4.3",
"@types/d3-sankey": "^0.12.5",
"autoprefixer": "^10.4.23",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.7.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
],
"src/**/*.css": [
"prettier --write"
],
"*.{html,json,md}": [
"prettier --write"
]
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/commands": "^6.10.1",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.3",
"@codemirror/view": "^6.39.8",
"@lezer/highlight": "^1.2.3",
"@replit/codemirror-minimap": "^0.5.2",
"@rustledger/wasm": "*",
"codemirror": "^6.0.2",
"d3": "^7.9.0",
"d3-sankey": "^0.12.3",
"lz-string": "^1.5.0"
}
}