This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@artbycity/bundledao-node",
"version": "0.1.3",
"description": "BundleDAO Arweave ANS-104 Bundle Delegation Node",
"keywords": [
"arweave",
"deso",
"ans-104",
"bundledao"
],
"author": "Jim Toth <jim@artby.city>",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://gitlab.com/art-by-city/bundledao-node"
},
"main": "./dist/app.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"start": "node ./dist",
"dev": "nodemon ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run build"
},
"devDependencies": {
"@types/bs58check": "^2.1.0",
"@types/chai": "^4.3.4",
"@types/elliptic": "^6.4.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-json": "^2.0.20",
"@types/mocha": "^10.0.0",
"@types/secp256k1": "^4.0.3",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@artbycity/bundledao-client": "^0.1.1",
"@koa/router": "^12.0.0",
"arbundles": "^0.7.0",
"arweave": "^1.11.6",
"axios": "^1.1.3",
"bs58check": "^2.1.2",
"dotenv": "^16.0.3",
"elliptic": "^6.5.4",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"key-encoder": "^2.0.3",
"knex": "^2.3.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"raw-body": "^2.5.1",
"reflect-metadata": "^0.1.13",
"secp256k1": "^4.0.3",
"sqlite3": "^5.1.2"
}
}