forked from gibsfinance/assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.14 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
{
"name": "@gibs/assets",
"version": "1.0.0",
"description": "a repo for tokens, networks, and data providers",
"main": "src/index.ts",
"scripts": {
"docker:build": "docker build -t gibsfinance/assets:latest .",
"docker:push": "docker push gibsfinance/assets:latest",
"db:prepare": "pnpm run db:start && pnpm run db:migrate-up",
"db:start": "docker compose up -d gibassets-postgres",
"db:stop": "docker compose down",
"db:migrate-down-all": "tsx ./node_modules/.bin/knex migrate:rollback --all",
"db:migrate-down": "tsx ./node_modules/.bin/knex migrate:down",
"db:migrate-rollback": "tsx ./node_modules/.bin/knex migrate:rollback",
"db:migrate-reset": "pnpm run db:migrate-down-all && pnpm run db:migrate-latest",
"db:migrate-up": "tsx src/bin/migrate",
"db:migrate-latest": "tsx src/bin/migrate",
"db:migrate-make": "tsx ./node_modules/.bin/knex migrate:make --esm",
"db:seed-make": "tsx ./node_modules/.bin/knex seed:make --esm",
"db:seed": "tsx src/bin/seed",
"build": "hardhat compile && pnpm run lint && tsc",
"collect": "tsx src/bin/collect",
"server": "tsx src/bin/server",
"dev": "tsx watch src/bin/server",
"lint": "prettier --check . && ESLINT_USE_FLAT_CONFIG=true eslint \"./src/**/*.ts\" -c .eslintrc.mjs",
"format": "prettier --write .",
"test": "NODE_ENV=test tsx --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout ./test/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gibsfinance/assets.git"
},
"keywords": [
"images",
"tokens",
"crypto",
"network"
],
"author": "gibsfinancedev",
"type": "module",
"license": "ISC",
"bugs": {
"url": "https://github.com/gibsfinance/assets/issues"
},
"homepage": "https://github.com/gibsfinance/assets#readme",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@topcli/spinner": "^2.1.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/eslint": "^8.56.10",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.17.4",
"@types/node": "^20.14.2",
"@types/pg": "^8.11.6",
"@types/response-time": "^2.3.8",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.32",
"@uniswap/token-lists": "^1.0.0-beta.34",
"body-parser": "^1.20.2",
"debug": "^4.3.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"express": "^4.19.2",
"file-type": "^19.0.0",
"globals": "^15.3.0",
"http-errors": "^2.0.0",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"pg": "^8.12.0",
"prettier": "^3.3.1",
"promise-limit": "^2.7.0",
"supertest": "^7.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"viem": "^2.14.2",
"yargs": "^17.7.2"
},
"dependencies": {
"@types/semver": "^7.5.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express-urlrewrite": "^2.0.2",
"response-time": "^2.3.2",
"semver": "^7.6.2"
}
}