-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.81 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 4.81 KB
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
{
"name": "atomicassets-api",
"version": "2.3.2",
"description": "AtomicAssets API: indexer and HTTP API for AtomicAssets, AtomicMarket, AtomicTools, and related contracts on Antelope (EOSIO) chains.",
"license": "MIT",
"author": "FACINGS INC.",
"repository": {
"type": "git",
"url": "https://github.com/atomicassets/atomicassets-api.git"
},
"homepage": "https://github.com/atomicassets/atomicassets-api#readme",
"bugs": {
"url": "https://github.com/atomicassets/atomicassets-api/issues"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11"
},
"packageManager": "pnpm@11.13.1",
"scripts": {
"check-types": "tsc --noEmit",
"knip": "knip",
"clean": "rm -rf ./build/* && rm -rf ./logs/*",
"lint": "eslint \"src/**/*.ts\"",
"build": "swc src -d build --strip-leading-paths",
"test": "mocha --require @swc-node/register 'src/**/*.test.ts' --ignore 'src/**/*.integration.test.ts'",
"test:integration": "[ -f config/connections.config.json ] && mocha --require @swc-node/register 'src/**/*.integration.test.ts' || echo 'Integration tests skipped: config/connections.config.json not found'",
"test:integration:ci": "pnpm test:init-db && mocha --require @swc-node/register --timeout 30000 'src/**/*.integration.test.ts'",
"test:init-db": "node --require @swc-node/register src/bin/init-test-db.ts",
"test:e2e:ci": "pnpm test:init-db && mocha --require @swc-node/register --timeout 30000 'src/**/*.test.ts'",
"test:watch": "mocha --require @swc-node/register --watch --watch-extensions ts 'src/**/*.test.ts' --ignore 'src/**/*.integration.test.ts'",
"test:coverage": "c8 mocha --require @swc-node/register --timeout 30000 'src/**/*.test.ts'",
"test:coverage:ci": "pnpm test:init-db && c8 mocha --require @swc-node/register --timeout 30000 'src/**/*.test.ts'",
"prestart": "[ -f build/bin/server.js ] || pnpm build",
"start": "node ./build/bin/server.js",
"prestart:server": "[ -f build/bin/server.js ] || pnpm build",
"start:server": "node ./build/bin/server.js",
"prestart:filler": "[ -f build/bin/filler.js ] || pnpm build",
"start:filler": "node ./build/bin/filler.js",
"prestart:abiscan": "[ -f build/bin/abiscan.js ] || pnpm build",
"start:abiscan": "node ./build/bin/abiscan.js",
"prestart:reconcile": "[ -f build/bin/reconcile.js ] || pnpm build",
"start:reconcile": "node ./build/bin/reconcile.js",
"prestart:repair-float-attributes": "[ -f build/bin/repair-float-attributes.js ] || pnpm build",
"start:repair-float-attributes": "node ./build/bin/repair-float-attributes.js",
"dev": "tsc --watch",
"dev:server": "tsc && node --trace-warnings ./build/bin/server.js",
"dev:filler": "tsc && node --trace-warnings ./build/bin/filler.js",
"dev:abiscan": "tsc && node --trace-warnings ./build/bin/abiscan.js",
"dev:reconcile": "tsc && node --trace-warnings ./build/bin/reconcile.js",
"dev:test:watch": "mocha -r @swc-node/register 'src/**/*.test.ts' --watch --watch-files src/ --reporter min",
"dev:init-test-db": "tsc && node --trace-warnings ./build/bin/init-test-db.js",
"db:schema:init": "pnpm build && node --trace-warnings ./build/bin/init-schema.js",
"db:migrate:up": "pnpm build && node --trace-warnings ./build/bin/migrate.js"
},
"dependencies": {
"@atomichub/antelope-ship-utils": "^2.0.0",
"@atomichub/atomicassets": "^2.2.0",
"@wharfkit/antelope": "^1.1.1",
"async-exit-hook": "^2.0.1",
"await-lock": "^2.2.1",
"body-parser": "^2.3.0",
"common-tags": "^1.8.2",
"compression": "^1.8.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"iovalkey": "^0.3.3",
"moize": "^6.1.1",
"p-queue": "^9.3.1",
"pg": "^8.22.0",
"prom-client": "^15.1.3",
"rate-limit-redis": "^5.0.0",
"socket.io": "^4.8.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.7.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.43",
"@types/body-parser": "^1.19.6",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/common-tags": "^1.8.4",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-serve-static-core": "^5.1.2",
"@types/mocha": "^10.0.10",
"@types/node": "^26.1.1",
"@types/pg": "^8.16.0",
"@types/sinon": "^21.0.0",
"@types/supertest": "^7.2.1",
"@types/swagger-ui-express": "^4.1.6",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"knip": "5.88.1",
"mocha": "^11.7.5",
"sinon": "^22.0.0",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3"
},
"private": true
}