This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.74 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "arns-service",
"version": "1.0.0",
"description": "Service that supports ArNS Portal",
"main": "./dist/app.js",
"types": "./dist/types.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "[email protected]:ar-io/arns-service.git"
},
"license": "AGPL-3.0",
"private": false,
"scripts": {
"start:dev": "nodemon",
"start:watch": "nodemon",
"start:prod": "yarn build && node dist/app.js",
"build": "yarn clean && yarn && npx tsc --project ./tsconfig.json",
"clean": "rimraf [ node_modules dist cache ]",
"test:docker": "docker compose --env-file=.env.test --profile test up --exit-code-from test-runner --build",
"test:integration": "mocha --spec=tests/integration/**.test.ts",
"test:integration:local": "docker compose up arlocal -d ; yarn test:integration $*; docker compose down -v",
"docker:run": "docker compose up arns-service --build",
"docker:run:litestream": "docker compose --profile litestream up --build",
"docker:integration": "docker compose --profile test up --exit-code-from test-runner --build",
"format:fix": "yarn prettier --write .",
"format:check": "yarn prettier . --check",
"lint:fix": "yarn eslint . --fix",
"lint:check": "yarn eslint .",
"prepare": "husky install"
},
"dependencies": {
"@ardrive/ardrive-promise-cache": "^1.1.4",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"arweave": "^1.14.4",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-router": "^12.0.0",
"koa2-swagger-ui": "^5.10.0",
"lodash": "^4.17.21",
"p-limit": "3.1.0",
"prom-client": "^14.2.0",
"warp-contracts": "1.4.39",
"warp-contracts-lmdb": "^1.1.10",
"warp-contracts-sqlite": "^1.0.2",
"winston": "^3.8.2",
"yaml": "^2.3.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.5",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa__cors": "^4.0.0",
"@types/koa__router": "^12.0.0",
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"axios": "^1.4.0",
"chai": "^4.3.7",
"commitlint": "^17.7.1",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.3.0",
"eslint": "^8.42.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"sinon": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"warp-contracts-plugin-deploy": "^1.0.8"
},
"resolutions": {
"lmdb": "^2.9.2"
}
}