-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 KB
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
{
"name": "ao-process-builder-api",
"version": "1.0.0",
"description": "API for the AO Process Builder",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@ardrive/turbo-sdk": "^1.23.5",
"@permaweb/aoconnect": "^0.0.82",
"axios": "^1.8.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"morgan": "^1.10.0",
"node-telegram-bot-api": "^0.66.0",
"nodemailer": "^6.10.1",
"telegraf": "^4.16.3",
"telegraf-session-local": "^2.1.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/morgan": "^1.9.9",
"@types/node": "^18.16.3",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}