forked from Codennnn/Apifox-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 KB
/
package.json
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
{
"name": "apifox-ui",
"private": true,
"description": "Replicate the ApiFox UI with Next.js and Ant Design.",
"license": "UNLECENSED",
"scripts": {
"build": "next build",
"deps": "pnpm up --interactive --latest",
"dev": "next dev",
"lint": "run-p lint:ts lint:es lint:css",
"lint:css": "stylelint **/*.css",
"lint:es": "eslint **/*.{ts,tsx}",
"lint:ts": "tsc --noEmit --skipLibCheck",
"start": "next start"
},
"dependencies": {
"@ant-design/cssinjs": "^1.18.4",
"@ant-design/icons": "^5.2.6",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@ebay/nice-modal-react": "^1.2.13",
"@emotion/css": "^11.11.2",
"@monaco-editor/react": "^4.6.0",
"antd": "^5.13.3",
"array-to-tree": "^3.3.2",
"clsx": "^2.1.0",
"foxact": "^0.2.31",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"lucide-react": "^0.320.0",
"nanoid": "^5.0.4",
"next": "^14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-resizable-panels": "^2.0.1",
"react-use-event-hook": "^0.9.6",
"react18-json-view": "^0.2.7",
"serialize-javascript": "^6.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "20.11.13",
"@types/react": "18.2.48",
"@types/serialize-javascript": "^5.0.4",
"autoprefixer": "^10.4.17",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prefer-code-style": "1.5.13",
"stylelint": "^15.10.3",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18",
"pnpm": "^8"
}
}