-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "hisptz-chatbot-server",
"description": "A minimal implementation of a chat-bot based on decision tree model",
"version": "1.0.0-beta.00",
"private": true,
"license": "MIT",
"devDependencies": {
"@types/async": "^3.2.20",
"@types/cors": "^2.8.13",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/luxon": "^3.3.0",
"@types/node": "^20.3.3",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.2",
"bestzip": "^2.2.1",
"nodemon": "^2.0.22",
"prisma": "4.16.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"prisma": {
"seed": "ts-node src/client/seed.ts"
},
"scripts": {
"start": "node app/src/index.js",
"migrate": "npx prisma migrate dev --name init",
"dev": "nodemon -x ts-node-esm src/index.ts --files",
"build": "tsc -p .",
"postbuild": "./postbuild.sh"
},
"dependencies": {
"@anatine/zod-openapi": "^2.0.1",
"@prisma/client": "4.16.2",
"@vpriem/express-api-key-auth": "^1.2.0",
"async": "^3.2.4",
"axios": "^1.4.0",
"cors": "^2.8.5",
"cron": "^2.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-openapi": "^12.1.3",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"openapi3-ts": "^4.1.2",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0",
"winston": "^3.9.0",
"zod": "^3.21.4"
}
}