-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.17 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 4.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "explorar.dev",
"version": "1.0.0",
"description": "A source code exploration and navigation platform",
"private": true,
"type": "module",
"engines": {
"node": ">=22.22.2",
"npm": ">=9.0.0"
},
"scripts": {
"prepare:sqljs": "tsx scripts/prepare-public-assets.ts --sqljs",
"guides:generate": "tsx scripts/generate-guide-registry.ts",
"guides:refs": "tsx scripts/check-guide-refs.ts",
"guides:format": "prettier --config prettier.config.mjs --write docs/*.md CONTRIBUTING.md",
"guides:validate": "npm run guides:generate && npm run lint:markdown && tsx scripts/validate-guides.ts && tsx scripts/check-guide-refs.ts",
"predev": "npm run guides:generate && tsx scripts/download-repos.ts --only=apple-oss-distributions/xnu --only=freebsd/freebsd-src --only=ghostbsd/ghostbsd-src --only=nextbsd-redux/nextbsd-kernel --only=reactos/reactos --only=python/cpython --only=torvalds/linux --only=littlekernel/lk --only=mrcxlinux/srv03rtm-anika --depth=1 && tsx scripts/build-man-pages.ts && tsx scripts/prepare-public-assets.ts --dev --sqljs",
"dev": "next dev --turbopack --port 3000",
"build": "tsx scripts/build.ts",
"deploy:r2": "tsx scripts/deploy-r2.ts",
"deploy": "npm run build && tsx scripts/deploy.ts",
"start": "next start",
"serve": "serve -l 3000 out -c",
"serve:public": "serve -l 3000 public",
"clean": "rm -rf repos man-pages public/repos public/man-pages public/sqljs public/public-stage-manifest.json out node_modules .next .eslintcache",
"clean:all": "npm run clean && rm -rf package-lock.json",
"lint": "npm run lint:types && npm run lint:eslint && npm run lint:prettier && npm run lint:markdown && npm run lint:deps",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint . --cache --cache-location .eslintcache --max-warnings 0",
"lint:prettier": "prettier --config prettier.config.mjs --check .",
"lint:markdown": "markdownlint docs/*.md --ignore docs/_template.md",
"lint:audit": "npm run audit",
"lint:deps": "depcheck",
"fix": "npm run fix:eslint && npm run fix:prettier && npm run lint:types",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --config prettier.config.mjs --write .",
"prepare": "husky",
"test": "npm run prepare:sqljs && playwright test",
"test:sanity": "npm run prepare:sqljs && playwright test tests/sanity.spec.ts",
"test:performance": "npm run prepare:sqljs && playwright test tests/web-vitals.spec.ts",
"test:seo": "npm run prepare:sqljs && playwright test tests/seo.spec.ts",
"test:quality": "npm run prepare:sqljs && playwright test tests/quality.spec.ts",
"test:ui": "npm run prepare:sqljs && playwright test --ui",
"test:report": "playwright show-report out/playwright-report",
"test:all": "npm run test && npm run test:report",
"query:index": "tsx scripts/query-code-index.ts"
},
"dependencies": {
"@dagrejs/dagre": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"better-sqlite3": "^11.10.0",
"gray-matter": "^4.0.3",
"html2canvas": "^1.4.1",
"marked": "^12.0.0",
"monaco-editor": "^0.55.1",
"new-github-issue-url": "^1.1.0",
"next": "^16.3.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"sql.js": "^1.14.1"
},
"overrides": {
"dompurify": "3.4.12",
"postcss": "8.5.25",
"sharp": "0.35.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@dagrejs/dagre": "^3.1.1",
"@monaco-editor/react": "^4.7.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^20.19.43",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"better-sqlite3": "^11.10.0",
"depcheck": "^1.4.7",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.1",
"eslint-config-prettier": "^10.1.8",
"gray-matter": "^4.0.3",
"html2canvas": "^1.4.1",
"husky": "^9.1.7",
"markdownlint-cli": "^0.49.1",
"marked": "^12.0.2",
"monaco-editor": "^0.55.1",
"new-github-issue-url": "^1.1.0",
"next": "^16.3.1",
"prettier": "^3.9.6",
"raw-loader": "^4.0.2",
"serve": "^14.2.6",
"sql.js": "^1.14.2",
"tailwindcss": "^4",
"tsx": "^4.23.12",
"typescript": "^5.9.3"
}
}