-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.2 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.2 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
{
"name": "oak",
"version": "0.1.0",
"description": "OnChain Attack Knowledge taxonomy and website.",
"private": true,
"scripts": {
"site:data": "python3 tools/export_json.py && python3 tools/export_stix.py && python3 tools/build_stats.py --json > tools/stats.json && python3 tools/build_stats.py > STATS.md && python3 tools/build_backlog.py > BACKLOG.md && python3 tools/build_coverage.py && python3 tools/build_specs.py && python3 tools/check_specs.py && python3 tools/build_specs_index.py && node scripts/build-site-data.mjs && node scripts/build-embedded-snapshot.mjs && node scripts/build-sitemap.mjs",
"dev": "npm run site:data && vite --host 0.0.0.0",
"build": "npm run site:data && tsc --noEmit && vite build && node scripts/copy-static-content.mjs && node scripts/build-route-pages.mjs",
"preview": "vite preview --host 0.0.0.0"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"marked": "^18.0.2",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}