-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 4.04 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 4.04 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
{
"name": "optionalrule-blog",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "npm run generate-search-index && npm run generate-rss && next build",
"start": "next start",
"enhance-post": "node scripts/enhance-post.mjs",
"verify-titles": "node scripts/verify-titles.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint . --max-warnings=0",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --config vitest.unit.config.ts",
"test:watch": "vitest --config vitest.unit.config.ts",
"test:ui": "vitest --ui --config vitest.unit.config.ts",
"test:coverage": "vitest run --coverage --config vitest.unit.config.ts",
"test:ci": "npm run typecheck && npm run lint && npm run test:coverage",
"test:integration": "vitest run --config vitest.unit.config.ts --run src/__tests__/integration.test.ts",
"test:ssg": "vitest run --config vitest.unit.config.ts --run src/__tests__/ssg.test.ts",
"test:a11y": "vitest run --config vitest.unit.config.ts --run src/__tests__/accessibility.test.tsx",
"test:star-system-generator": "npm run test -- --run src/features/tools/star_system_generator && npm run audit:star-system-generator",
"test:build": "npm run build && npm run test:static",
"test:static": "node -e \"console.log('Build verification: Static files generated successfully')\"",
"test:all": "npm run test && npm run test:a11y && npm run test:build",
"generate-search-index": "node --import tsx/esm scripts/generate-search-index.ts",
"create-post": "node --import tsx/esm scripts/create-post.ts",
"replace-default-images": "node --import tsx/esm scripts/replace-default-images.ts",
"download-external-images": "node --import tsx/esm scripts/download-external-images.ts",
"find-empty-links": "node --import tsx/esm scripts/find-empty-links.ts",
"generate-rss": "node --import tsx/esm scripts/generate-rss.ts",
"sort:star-system-names": "node --import tsx/esm scripts/sort-star-system-names.ts",
"audit:star-system-data": "node --import tsx/esm scripts/audit-star-system-data.ts",
"audit:star-system-generator": "node --import tsx/esm scripts/audit-star-system-generator.ts",
"audit:star-system-generator:quick": "STAR_SYSTEM_AUDIT_PROFILE=quick node --import tsx/esm scripts/audit-star-system-generator.ts",
"audit:star-system-generator:deep": "STAR_SYSTEM_AUDIT_PROFILE=deep node --import tsx/esm scripts/audit-star-system-generator.ts",
"validate-config": "node --import tsx/esm scripts/validate-config.ts"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@tailwindcss/typography": "^0.5.19",
"@types/mdx": "^2.0.13",
"fuse.js": "^7.1.0",
"globby": "^16.1.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.7.0",
"next": "^16.1.6",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"reading-time": "^1.5.0",
"rehype-highlight": "^7.0.2",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"turndown": "^7.2.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"@vitest/coverage-v8": "^4.0.18",
"baseline-browser-mapping": "^2.9.19",
"eslint": "9.39.3",
"eslint-config-next": "^16.1.6",
"happy-dom": "^20.6.1",
"jest-axe": "^10.0.0",
"playwright": "^1.58.2",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"overrides": {
"typescript-eslint": "8.58.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0"
}
}