-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "documentdb-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run compile && next dev --turbopack",
"build": "npm run compile && next build --turbopack",
"compile": "npm run compile:clean && npm run compile:content",
"compile:content": "tsx scripts/compile-content.tsx",
"compile:clean": "tsx scripts/compile-clean.tsx",
"start": "npx serve out",
"lint": "eslint"
},
"dependencies": {
"change-case": "^5.4.4",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.1",
"next": "^15.5.9",
"pluralize": "^8.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"strip-markdown": "^6.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@next/eslint-plugin-next": "^16.1.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.19.27",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "^15.5.4",
"ink": "^6.6.0",
"minimatch": "^10.1.1",
"serve": "^14.2.5",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}