-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "resolutio-chatbot-api",
"version": "1.0.0",
"description": "API for the resoultio chatbot",
"main": "src/index.ts",
"repository": "https://github.com/resolutio-ai/resolutio-chatbot-api.git",
"author": "king-Alex-d-great <[email protected]>",
"license": "MIT",
"engines": {
"node": "20.5.1"
},
"scripts": {
"dev": "tsc && yarn nodemon",
"build": "rimraf ./build && tsc",
"start": "yarn run build && node build/index.ts"
},
"private": true,
"dependencies": {
"@biconomy/account": "^3.1.0",
"@biconomy/bundler": "^3.1.0",
"@biconomy/common": "^3.1.0",
"@biconomy/core-types": "^3.1.0",
"@biconomy/paymaster": "^3.1.0",
"@lighthouse-web3/sdk": "^0.2.7",
"@magic-sdk/admin": "^2.0.1",
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.10",
"@types/node": "^20.6.0",
"axios": "^1.5.0",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"mocha": "^10.2.0",
"mongoose": "^7.5.1",
"multer": "^1.4.5-lts.1",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"viem": "^1.20.3",
"web3.storage": "^4.5.5",
"yup": "^1.3.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"nodemon": "^3.0.1"
}
}