-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
115 lines (115 loc) · 4.17 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ar-io-node",
"description": "The AR.IO gateway core service",
"type": "module",
"main": "./dist/app.js",
"repository": {
"type": "git",
"url": "https://github.com/ar-io/ar-io-node"
},
"dependencies": {
"@ar.io/sdk": "^2.2.5",
"@aws-lite/client": "^0.22.4",
"@aws-lite/s3": "^0.2.6",
"@clickhouse/client": "^1.3.0",
"@permaweb/aoconnect": "^0.0.56",
"apollo-server-express": "^3.13.0",
"arbundles": "^0.11.1",
"arweave": "^1.14.4",
"axios": "^1.6.2",
"better-sqlite3": "^9.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"duckdb-async": "^1.1.0",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"express-openapi-validator": "^5.1.2",
"express-prometheus-middleware": "^1.2.0",
"fastq": "^1.15.0",
"fs-extra": "^11.2.0",
"graphql": "^16.8.1",
"json-canonicalize": "^1.0.6",
"lmdb": "^2.9.2",
"middleware-async": "^1.3.5",
"msgpackr": "^1.10.0",
"node-cache": "^5.1.2",
"opossum": "^8.1.3",
"opossum-prometheus": "^0.3.0",
"prom-client": "^14.0.1",
"ramda": "^0.28.0",
"range-parser": "^1.2.1",
"redis": "^4.6.10",
"retry-axios": "^3.1.3",
"rfc4648": "^1.5.2",
"sql-bricks": "^3.0.0",
"stream-chain": "^2.2.5",
"stream-json": "^1.7.2",
"swagger-ui-express": "^4.5.0",
"umzug": "^3.2.1",
"wait": "^0.4.2",
"winston": "^3.7.2",
"yaml": "^2.3.4",
"yesql": "^7.0.0"
},
"devDependencies": {
"@aws-lite/s3-types": "^0.2.6",
"@smithy/types": "^3.7.1",
"@swc/core": "^1.3.100",
"@testcontainers/localstack": "^10.9.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "7.6.3",
"@types/express": "^4.17.13",
"@types/express-prometheus-middleware": "^1.2.3",
"@types/fs-extra": "^11.0.1",
"@types/msgpack-lite": "^0.1.8",
"@types/node": "^20.12.4",
"@types/opossum": "^8.1.6",
"@types/ramda": "^0.28.15",
"@types/source-map-support": "^0.5.4",
"@types/stream-chain": "^2.0.1",
"@types/stream-json": "^1.7.2",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"c8": "^8.0.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^49.0.0",
"msgpack-lite": "^0.1.26",
"nodemon": "^2.0.18",
"npm-check-updates": "^16.14.11",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"testcontainers": "^10.7.2",
"ts-node": "^10.9.2",
"typescript": "^4.7.3"
},
"resolutions": {
"gc-stats/nan": "2.18.0",
"express-prometheus-middleware/prometheus-gc-stats/gc-stats": "1.4.1"
},
"scripts": {
"build": "yarn clean && npx tsc --project ./tsconfig.prod.json && yarn copy-files",
"copy-files": "copyfiles -u 1 src/**/*.graphql src/**/*.sql dist",
"clean": "npx rimraf [ .nyc_output coverage dist ]",
"start": "cross-env NODE_OPTIONS=\"--import=./register.js\" node --env-file=.env src/app.ts",
"start:prod": "yarn build && node dist/app.js",
"watch": "nodemon",
"db:migrate": "cross-env NODE_OPTIONS=\"--import=./register.js\" node src/migrate.ts",
"db:dump-test-schemas": "./test/dump-test-schemas",
"test": "cross-env NODE_OPTIONS=\"--import=./register.js \" node --test --test-concurrency 1 src/**/*.test.ts",
"test:ci": "cross-env NODE_OPTIONS=\"--import=./register.js\" npx c8 -r lcov node --test --test-concurrency 1 --test-reporter=spec --test-reporter-destination=stdout src/**/*.test.ts",
"test:coverage": "cross-env NODE_OPTIONS=\"--import=./register.js\" npx c8 -r text -r html node --test --test-concurrency 1 src/**/*.test.ts",
"test:e2e": "cross-env NODE_OPTIONS=\"--import=./register.js\" node --test --test-concurrency 1 --test-reporter=spec --test-reporter-destination=stdout test/**/*.test.ts",
"lint:check": "eslint src test",
"lint:fix": "eslint --fix src test"
}
}