-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.06 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.06 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
{
"name": "multicorn-learn",
"version": "0.1.0",
"private": false,
"description": "Multicorn Learn: AI education site and landing page for multicorn.ai",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.29.3",
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/fetch-changelog.mjs",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,css,json,md,mdx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,css,json,md,mdx}\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && pnpm --filter @multicorn/llm-adapter run typecheck && pnpm --filter @multicorn/llm-adapter run build && pnpm --filter @multicorn/multicorn-content run typecheck",
"prepare": "husky"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^15.5.15",
"@types/mdx": "^2.0.13",
"gray-matter": "^4.0.3",
"lucide-react": "^0.460.0",
"next": "^15.5.15",
"next-mdx-remote": "^6.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-gfm": "^4.0.1",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@multicorn/multicorn-content": "workspace:*",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"canvas": "^3.2.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-multicorn-ui": "file:./eslint-plugin-multicorn-ui",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.3",
"vitest": "^3.0.5",
"jsdom": "^26.0.0"
}
}