-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.44 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 5.44 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "comapeo-docs",
"version": "0.1.1-beta",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"prepare": "lefthook install",
"dev": "docusaurus start",
"dev:es": "docusaurus start --locale es",
"dev:pt": "docusaurus start --locale pt",
"lint": "eslint src --ext .js,.ts,.tsx --fix",
"lint:fix": "eslint src --ext .js,.ts,.tsx --fix --fix-type problem,suggestion,layout",
"fix:frontmatter": "bun scripts/fix-frontmatter.ts",
"generate:robots": "bun scripts/generate-robots-txt.ts",
"build": "bun run fix:frontmatter && bun run generate:robots && docusaurus build",
"notion:fetch": "bun scripts/notion-fetch",
"notion:fetch-auto-translation-children": "bun scripts/notion-fetch-auto-translation-children.ts",
"notion:fetch-one": "bun scripts/notion-fetch-one",
"notion:translate": "bun scripts/notion-translate",
"notion:create-template": "bun scripts/notion-create-template",
"notion:version": "bun scripts/notion-version",
"notionStatus:ready-for-translation": "bun scripts/notion-status --workflow ready-for-translation",
"notionStatus:translation": "bun scripts/notion-status --workflow translation",
"notionStatus:draft": "bun scripts/notion-status --workflow draft",
"notionStatus:publish": "bun scripts/notion-status --workflow publish",
"notionStatus:publish-production": "bun scripts/notion-status --workflow publish-production",
"notion:export": "bun scripts/notion-fetch/exportDatabase.ts",
"notion:gen-placeholders": "bun scripts/notion-placeholders",
"notion:fetch-all": "bun scripts/notion-fetch-all",
"api:server": "bun api-server",
"api:server:dev": "bun --watch api-server",
"clean:generated": "bun scripts/cleanup-generated-content.ts",
"scaffold:test": "bun run scripts/test-scaffold/index.ts",
"scaffold:test:all": "bun run scripts/test-scaffold/index.ts --all",
"ai:suggest-tests": "bun run scripts/ai-test-suggest/index.ts",
"test:generate": "bun run scaffold:test:all && echo 'Run ai:suggest-tests for each file'",
"test": "vitest run --pool=threads",
"test:run": "vitest run --pool=threads",
"test:vitest": "vitest",
"test:vitest:run": "vitest run --pool=threads",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage --pool=threads",
"test:ui": "vitest --ui",
"test:scripts": "vitest run scripts/",
"test:scripts:watch": "vitest scripts/ --watch",
"test:notion-fetch": "vitest --run scripts/notion-fetch/__tests__/",
"test:notion-cli": "vitest --run scripts/notion-fetch-all/__tests__/",
"test:api-server": "vitest --run api-server/",
"test:notion-pipeline": "vitest --run \"scripts/notion-fetch/__tests__/runFetchPipeline.test.ts\"",
"test:notion-image": "vitest --run \"scripts/notion-fetch/__tests__/downloadImage.test.ts\"",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-translations:all": "docusaurus write-translations --locale pt && docusaurus write-translations --locale es",
"write-heading-ids": "docusaurus write-heading-ids",
"gen-pdf": "docusaurus-prince-pdf -u http://localhost:3000/docs",
"typecheck": "tsc",
"test:locale-parity": "vitest --run scripts/locale-parity.test.ts"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.3",
"@docusaurus/core": "^3.9.2",
"@docusaurus/plugin-client-redirects": "^3.9.2",
"@docusaurus/plugin-google-gtag": "^3.9.2",
"@docusaurus/plugin-ideal-image": "^3.9.2",
"@docusaurus/plugin-pwa": "^3.9.2",
"@docusaurus/plugin-sitemap": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@mdx-js/react": "^3.1.1",
"clsx": "^2.1.1",
"openai": "^6.27.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.9.2",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@eslint/js": "^10.0.1",
"@notionhq/client": "^5.12.0",
"@types/glob": "^9.0.0",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"axios": "^1.13.6",
"bun-types": "^1.3.10",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"docusaurus-prince-pdf": "^1.2.1",
"dotenv": "^17.3.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-security": "^4.0.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"imagemin": "^9.0.1",
"imagemin-jpegtran": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^12.0.0",
"imagemin-webp": "^8.0.0",
"lefthook": "^2.1.3",
"notion-to-md": "^3.1.9",
"ora": "^9.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18",
"wrangler": "^4.72.0",
"yaml": "^2.8.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}