forked from i3months/eziwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "eziwiki",
"version": "0.1.0",
"description": "An easy-to-use wiki and documentation site generator built with Next.js",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run validate:payload && next build",
"export": "npm run build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"validate:payload": "tsx scripts/validate-payload.ts",
"show-urls": "tsx scripts/show-hash-urls.ts"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.554.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^16.1.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"shiki": "^1.0.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/ui": "^4.0.9",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"vitest": "^4.0.9"
}
}