forked from uniai-lab/uniai-maas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.72 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
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
{
"name": "uni-ai",
"version": "1.5.0",
"description": "UniAI is a platform that integrates multiple AI models",
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"start": "egg-scripts start --daemon --title=uniai-app --port 3300",
"stop": "egg-scripts stop --title=uniai-app",
"dev": "egg-bin dev --port 3300",
"ets": "ets",
"test-local": "egg-bin test -p",
"test": "npm run lint -- --fix && npm run test-local",
"cov": "egg-bin cov -p",
"ci": "npm run lint && npm run cov && npm run tsc && npm run clean",
"lint": "eslint . --ext .ts --cache",
"tsc": "tsc",
"build": "tsc",
"clean": "tsc -b --clean",
"docker": "ts-node ./docker/docker.ts"
},
"dependencies": {
"@alicloud/dysmsapi20170525": "^2.0.24",
"@cyber2024/pdf-parse-fixed": "^1.2.5",
"@eggjs/tegg": "^3.30.0",
"@eggjs/tegg-aop-plugin": "^3.30.0",
"@eggjs/tegg-config": "^3.30.0",
"@eggjs/tegg-controller-plugin": "^3.30.0",
"@eggjs/tegg-eventbus-plugin": "^3.30.0",
"@eggjs/tegg-plugin": "^3.30.0",
"@eggjs/tegg-schedule-plugin": "^3.30.0",
"@openai-link/egg-sequelize-ts": "^1.1.1",
"@stdlib/assert-is-json": "^0.1.1",
"app-root-path": "^3.1.0",
"axios": "^1.6.6",
"dotenv": "^16.4.1",
"egg": "^3.18.0",
"egg-cors": "^3.0.0",
"egg-multipart": "^3.3.0",
"egg-redis": "^2.5.0",
"egg-scripts": "^2.17.0",
"egg-sequelize": "^6.0.0",
"egg-tracer": "^2.1.0",
"egg-view-nunjucks": "^2.3.0",
"eventsource-parser": "^1.1.1",
"form-data": "^4.0.0",
"gpt-3-encoder": "^1.1.4",
"gt4-node-sdk": "^0.0.2",
"html-to-text": "^9.0.5",
"is-base64": "^1.1.0",
"is-valid-domain": "^0.1.6",
"jsonwebtoken": "^9.0.2",
"libreoffice-convert": "^1.5.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"minio": "^7.1.3",
"mint-filter": "^4.0.3",
"ml-distance": "^4.0.1",
"moment": "^2.30.1",
"openai": "^4.25.0",
"pdf-to-img": "^2.1.2",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sbd": "^1.0.19",
"sequelize": "^6.35.2",
"sequelize-typescript": "^2.1.6",
"ws": "^8.16.0"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.3.3",
"@types/dockerode": "^3.3.23",
"@types/html-to-text": "^9.0.4",
"@types/is-base64": "^1.1.3",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/md5": "^2.3.5",
"@types/mocha": "10",
"@types/node": "^20.11.6",
"@types/sbd": "^1.0.5",
"@types/sequelize": "^4.28.20",
"@types/validator": "^13.11.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"commander": "^11.1.0",
"docker-compose": "^0.24.3",
"dockerode": "^4.0.2",
"egg-bin": "6.7.0",
"egg-mock": "5.10.9",
"egg-ts-helper": "^2.1.0",
"eslint": "8.56.0",
"eslint-config-egg": "13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"leoric": "^2.12.2",
"mocha": "^10.2.0",
"node-gyp": "^10.0.1",
"prettier": "^3.2.4",
"reflect-metadata": "^0.2.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/uni-openai/UniAI"
},
"author": "devilyouwei",
"license": "MIT"
}