-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
89 lines (89 loc) · 3.05 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
85
86
87
88
89
{
"name": "ar-io-node",
"version": "0.0.1",
"description": "The AR.IO network observer.",
"license": "AGPL-3.0-or-later",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ar-io/ar-io-observer"
},
"dependencies": {
"@ar.io/sdk": "^2.2.0",
"@ardrive/ardrive-promise-cache": "^1.1.4",
"@ardrive/turbo-sdk": "^1.17.0",
"@dha-team/arbundles": "^1.0.1",
"@permaweb/aoconnect": "^0.0.56",
"arweave": "1.13.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-openapi-validator": "^5.0.5",
"express-prometheus-middleware": "^1.2.0",
"fs-extra": "^11.1.0",
"got": "^13.0.0",
"middleware-async": "^1.3.5",
"node-cache": "^5.1.2",
"p-map": "^6.0.0",
"prom-client": "^14.0.1",
"swagger-ui-express": "^5.0.0",
"winston": "^3.7.2",
"yaml": "^2.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@swc/core": "^1.2.241",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.17",
"@types/express-prometheus-middleware": "^1.2.1",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.11",
"@types/source-map-support": "^0.5.4",
"@types/swagger-ui-express": "^4.1.3",
"@types/yargs": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"mocha": "^10.0.0",
"mocha-multi": "^1.1.7",
"nock": "^13.5.1",
"nodemon": "^3.1.3",
"prettier": "^2.6.5",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.1",
"ts-sinon": "^2.0.2",
"typescript": "^5.3.0"
},
"scripts": {
"build": "yarn clean && npx tsc --project ./tsconfig.prod.json",
"clean": "npx rimraf [ .nyc_output coverage dist ]",
"observe": "NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" node src/cli.ts",
"service": "NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" node src/service.ts",
"start:watch": "NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" nodemon --watch src --ext ts --exec ts-node -r dotenv/config src/service.ts",
"test": "mocha --no-warnings",
"test:ci": "npx c8 -r lcov mocha --no-warnings --timeout 10000 -R mocha-multi --reporter-options spec=-,json=test-results.json",
"test:coverage": "npx c8 -r text -r html mocha --no-warnings",
"lint:check": "eslint src",
"lint:fix": "eslint --fix src",
"format:fix": "prettier --write src",
"format:check": "prettier --check src"
}
}