forked from yapi-pro/yapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "yapi-pro",
"version": "1.11.2",
"description": "YApi 可视化接口管理平台社区维护 fork:修复依赖兼容性,升级至 Node 20 / MongoDB 6,提供开箱即用的 Docker Compose 部署方案",
"homepage": "https://github.com/darknessomi/yapi",
"bugs": {
"url": "https://github.com/darknessomi/yapi/issues"
},
"main": "server/app.js",
"scripts": {
"dev-copy-icon": "cp -r static/iconfont ./",
"dev-server": " nodemon server/app.js dev -L",
"install-server": " node server/install.js",
"generate-plugin-module": "node scripts/generate-plugin-module.js",
"dev-client": "npm run dev-copy-icon && npm run generate-plugin-module && vite --port 4000",
"dev": "npm run dev-server & npm run dev-client",
"start": " node server/app.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint client server exts scripts --ext .js,.jsx",
"prebuild-client": "npm run generate-plugin-module",
"build-client": "vite build && node scripts/generate-assets.js && node scripts/gzip-prd.js",
"ensure-static-build": "node scripts/ensure-static-build.js",
"docs": "ydoc build",
"prepare": "node .husky/install.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/darknessomi/yapi.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@koa/router": "^15.7.0",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.2",
"ajv": "^8.20.0",
"ajv-draft-04": "^1.0.0",
"ajv-i18n": "^4.2.0",
"axios": "^1.18.1",
"copy-to-clipboard": "^4.0.2",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.21",
"fs-extra": "^11.3.6",
"generate-schema": "^2.6.0",
"immer": "^11.1.11",
"js-base64": "^3.8.0",
"json-schema-faker": "^0.5.9",
"json5": "^2.2.3",
"jsondiffpatch": "^0.7.6",
"jsonwebtoken": "^9.0.3",
"jsrsasign": "^11.1.3",
"koa": "^3.2.1",
"koa-body": "^8.0.0",
"koa-static": "^5.0.0",
"koa-websocket": "^7.0.0",
"ldapts": "^8.1.8",
"markdown-it": "^14.3.0",
"markdown-it-anchor": "^9.2.1",
"markdown-it-table-of-contents": "^1.2.0",
"md5": "^2.3.0",
"mockjs": "^1.1.0",
"mongoose": "^6.13.10",
"node-schedule": "^2.1.1",
"nodemailer": "^8.0.11",
"qs": "^6.15.3",
"sha.js": "^2.4.12",
"swagger-client": "3.37.3",
"underscore": "^1.13.8",
"url": "^0.11.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.29.7",
"@babel/plugin-proposal-decorators": "^7.29.7",
"@babel/plugin-transform-class-properties": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@toast-ui/editor": "^3.2.2",
"@vitejs/plugin-react": "^5.2.0",
"ace-builds": "^1.44.0",
"antd": "^3.26.20",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"json-schema-editor-visual": "^1.1.1",
"less": "^3.13.1",
"markdown-it-include": "^2.0.0",
"nodemon": "^3.1.14",
"prop-types": "^15.8.1",
"rc-queue-anim": "^2.0.0",
"rc-scroll-anim": "^2.7.6",
"rc-tween-one": "^2.7.3",
"react": "^16.14.0",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.9",
"react-router-dom": "^4.3.1",
"reactabular-dnd": "^8.16.0",
"reactabular-table": "^8.14.0",
"recharts": "^2.15.4",
"redux": "^4.2.1",
"sass": "^1.101.0",
"table-resolver": "^4.1.1",
"vite": "^6.4.3",
"vite-plugin-commonjs": "^0.10.4",
"vitest": "^4.1.10",
"ydoc-plugin-img-view": "^1.0.3"
},
"engines": {
"node": ">= 20.0.0",
"npm": ">= 9.0.0"
}
}