-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.76 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
{
"name": "explorar.dev",
"version": "1.0.0",
"description": "A source code exploration and navigation platform",
"private": true,
"type": "module",
"engines": {
"node": ">=18.17.0",
"npm": ">=9.0.0"
},
"scripts": {
"predev": "tsx scripts/download-repos.ts --only=apple-oss-distributions/xnu --only=python/cpython --only=torvalds/linux --only=littlekernel/lk --depth=1",
"dev": "next dev --turbopack --port 3000",
"build": "next build",
"postbuild": "tsx scripts/report-build.ts",
"prebuild": "tsx scripts/download-repos.ts --depth=1 && tsx scripts/validate-guides.ts && tsx scripts/check-guide-refs.ts",
"start": "next start",
"serve": "serve -l 3000 out -c",
"serve:public": "serve -l 3000 public",
"clean": "rm -rf public/repos public/avatars 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:deps",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint . --cache --cache-location .eslintcache --max-warnings 0",
"lint:prettier": "prettier --config prettier.config.mjs --check .",
"lint:deps": "depcheck",
"fix": "npm run fix:eslint && npm run fix:prettier && npm run fix:audit && npm run lint:types",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --config prettier.config.mjs --write .",
"fix:audit": "npm audit fix",
"prepare": "husky",
"test": "playwright test",
"test:sanity": "playwright test tests/sanity.spec.ts",
"test:performance": "playwright test tests/web-vitals.spec.ts",
"test:seo": "playwright test tests/seo.spec.ts",
"test:quality": "playwright test tests/quality.spec.ts",
"test:score": "playwright test tests/quality-score.spec.ts",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report out/playwright-report",
"test:all": "npm run test && npm run test:report"
},
"dependencies": {
"@dagrejs/dagre": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"@xyflow/react": "^12.10.2",
"gray-matter": "^4.0.3",
"marked": "^12.0.0",
"mermaid": "^10.9.0",
"monaco-editor": "^0.52.2",
"next": "^16.2.2",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"depcheck": "^1.4.7",
"eslint": "^9",
"eslint-config-next": "^16.0.7",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"raw-loader": "^4.0.2",
"serve": "^14.2.6",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5"
}
}