-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 Bytes
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
{
"name": "bealyash",
"version": "1.0.0",
"description": "bealyash - a great chat bot developed with love",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon src/index.ts",
"postinstall": "tsc && prisma migrate deploy",
"start": "node dist/index.js"
},
"keywords": [],
"author": "Alexander Ward",
"license": "ISC",
"engines": {
"node": "16.15.1"
},
"dependencies": {
"@prisma/client": "^4.2.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"form-data": "^4.0.0",
"rambda": "^7.2.1",
"zod": "^3.17.10"
},
"devDependencies": {
"@types/cli-color": "^2.0.2",
"@types/node": "^18.6.3",
"nodemon": "^2.0.19",
"prisma": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}