forked from permaweb/ao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "@permaweb/ao-mu",
"version": "1.0.0",
"description": "A Node Express server that implements the ao Messenger Unit specification",
"keywords": [
"express",
"web",
"server"
],
"license": "MIT",
"author": "VinceJuliano",
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "nodemon",
"docker-build": "docker build -t cu-app .",
"docker-run": "npm run docker-build && docker run -p 3005:3005 cu-app",
"start": "node -r dotenv/config src/app.js",
"test": "node --test"
},
"dependencies": {
"@permaweb/ao-scheduler-utils": "^0.0.17",
"arbundles": "0.11.0",
"arweave": "^1.14.4",
"async-mutex": "^0.5.0",
"better-sqlite3": "^11.1.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"hyper-async": "^1.1.2",
"lru-cache": "^10.2.0",
"node-cron": "^3.0.3",
"p-map": "^7.0.1",
"prom-client": "^15.1.2",
"pubsub-js": "^1.9.4",
"ramda": "^0.29.1",
"warp-arbundles": "^1.0.4",
"workerpool": "^9.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.12.7",
"nodemon": "^3.0.1"
},
"engines": {
"node": "22"
}
}