-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.94 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.94 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
{
"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-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: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",
"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: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"
},
"dependencies": {
"@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.9.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sharp": "^0.34.5",
"zod": "^4.1.12"
},
"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": "^9.39.1",
"@notionhq/client": "^5.4.0",
"@types/glob": "^9.0.0",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"docusaurus-prince-pdf": "^1.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-security": "^3.0.1",
"glob": "^12.0.0",
"globals": "^16.5.0",
"imagemin": "^9.0.1",
"imagemin-jpegtran": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"imagemin-webp": "^8.0.0",
"lefthook": "^2.0.4",
"notion-to-md": "^3.1.9",
"ora": "^9.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "^4.0.10",
"wrangler": "^4.47.0"
},
"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"
}
}