-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.44 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
{
"name": "tipalph",
"version": "1.6.1",
"description": "A tipping bot for the Alephium Blockchain",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node --es-module-specifier-resolution=node build/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch --clear-screen=false src/index.ts",
"clean": "rm -r build 2> /dev/null",
"lint": "npx eslint . --ext .ts",
"test": "echo -e '\\e[93m/!\\ Ensure to have a devnet fullnode running on http://127.0.0.1:22973 /!\\ \\e[0m' && jest -i --forceExit --detectOpenHandles",
"package": "docker build --no-cache -t tipalph:v$(jq -r .version package.json) -t tipalph:latest .",
"write-migration-file": "npx typeorm-ts-node-esm migration:generate -d src/db/data-source.ts"
},
"engines": {
"node": ">=20.18.0",
"npm": ">=10.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notrustverify/tipALPH.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/notrustverify/tipALPH/issues"
},
"homepage": "https://github.com/notrustverify/tipALPH#readme",
"devDependencies": {
"@alephium/web3-test": "^1.8.2",
"@babel/preset-env": "^7.25.9",
"@telegraf/types": "^7.1.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.14",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-love": "^43.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.1",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@alephium/cli": "^1.8.2",
"@alephium/web3": "^1.8.2",
"@alephium/web3-wallet": "^1.8.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-prometheus": "^0.53.0",
"@opentelemetry/instrumentation-http": "^0.53.0",
"@opentelemetry/instrumentation-net": "^0.39.0",
"@opentelemetry/resources": "^1.26.0",
"@opentelemetry/sdk-metrics": "^1.26.0",
"@opentelemetry/sdk-node": "^0.53.0",
"@opentelemetry/semantic-conventions": "^1.27.0",
"async-mutex": "^0.5.0",
"bip39": "^3.1.0",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"telegraf": "^4.16.3",
"typeorm": "^0.3.20"
}
}