-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3.11 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
{
"name": "@stx-labs/token-metadata-api",
"description": "A microservice that indexes metadata for all Fungible, Non-Fungible, and Semi-Fungible Tokens in the Stacks blockchain and exposes it via JSON REST API endpoints",
"version": "2.2.4",
"repository": {
"type": "git",
"url": "https://github.com/stx-labs/token-metadata-api.git"
},
"type": "module",
"main": "index.js",
"author": "Stacks Labs",
"license": "GPL-3.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
"build:client": "npm run generate:git-info && npm run generate:openapi && npm run generate:client",
"start": "node ./dist/src/index.js",
"start-ts": "node --import tsx ./src/index.ts",
"test:admin": "NODE_ENV=test node --import tsx --test --test-global-setup=./tests/setup.ts --test-concurrency=1 ./tests/admin/*.test.ts",
"test:api": "NODE_ENV=test node --import tsx --test --test-global-setup=./tests/setup.ts --test-concurrency=1 ./tests/api/*.test.ts",
"test:stacks-core": "NODE_ENV=test node --import tsx --test --test-global-setup=./tests/setup.ts --test-concurrency=1 ./tests/stacks-core/*.test.ts",
"test:token-queue": "NODE_ENV=test node --import tsx --test --test-global-setup=./tests/setup.ts --test-concurrency=1 ./tests/token-queue/*.test.ts",
"migrate": "node --import tsx node_modules/.bin/node-pg-migrate -j ts",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check src/**/*.ts",
"generate:openapi": "rimraf ./openapi.yaml && node --import tsx ./util/openapi-generator.ts",
"generate:git-info": "rimraf .git-info && node_modules/.bin/api-toolkit-git-info",
"generate:client": "openapi-typescript ./openapi.yaml -o ./client/src/generated/schema.d.ts"
},
"prettier": "@stacks/prettier-config",
"devDependencies": {
"@stacks/api-test-toolkit": "^1.13.0",
"@stacks/eslint-config": "^3.0.0-develop.2",
"@types/dockerode": "^3.3.40",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"dockerode": "^4.0.9",
"eslint": "^9.39.4",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-tsdoc": "^0.5.2",
"nock": "^14.0.11",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/swagger": "^9.7.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@google-cloud/storage": "^7.19.0",
"@sinclair/typebox": "^0.34.48",
"@stacks/api-toolkit": "^1.13.0",
"@stacks/blockchain-api-client": "^8.14.2",
"@stacks/codec": "^1.6.0",
"@stacks/node-publisher-client": "^2.0.5",
"@stacks/transactions": "^7.4.0",
"@types/node": "^24.0.0",
"bignumber.js": "^10.0.2",
"env-schema": "^7.0.0",
"fastify": "^5.8.2",
"fastify-metrics": "^12.1.0",
"json5": "^2.2.3",
"node-pg-migrate": "^7.9.1",
"p-queue": "^9.1.0",
"prom-client": "^15.1.3",
"sharp": "^0.34.5",
"undici": "^7.24.4"
}
}