-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"@rive-app/react-webgl2": "^4.27.0",
"@types/mdx": "^2.0.13",
"fumadocs-core": "^16.7.4",
"fumadocs-mdx": "^14.2.11",
"fumadocs-openapi": "^10.4.1",
"fumadocs-ui": "^16.7.4",
"mermaid": "^11.13.0",
"motion": "^12.35.0",
"next": "16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-fast-marquee": "^1.6.5",
"react-markdown": "^10.1.0",
"remark-directive": "^4.0.0",
"sass": "^1.97.1",
"svg-pan-zoom": "^3.6.2",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.23",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"typescript": "^5"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"eslint",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}