-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "ai-server",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "commonjs",
"scripts": {
"start": "node main.js",
"dev": "node dist/main.js",
"predev": "npm run build",
"build": "tsc && babel dist -d dist && npm run swagger",
"swagger": "node dist/swagger/swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recipe-GPT/ai-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Recipe-GPT/ai-server/issues"
},
"homepage": "https://github.com/Recipe-GPT/ai-server#readme",
"dependencies": {
"@types/express": "^4.17.17",
"axios": "^1.4.0",
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^5.0.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-asyncify": "^2.0.2",
"openai": "^3.3.0",
"swagger-autogen": "^2.23.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@types/swagger-ui-express": "^4.1.3"
}
}