-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"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",
"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",
"@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"
}
}