-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "prediction-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"testnetcompile": "cli compile -n testnet",
"devcompile": "cli compile -n devnet",
"mainnetcompile": "cli compile -n mainnet",
"test": "cli test -i -v",
"devdeploy": "cli deploy --network devnet",
"testnetdeploy": "cli deploy --network testnet",
"mainnetdeploy": "cli deploy --network mainnet",
"build": "tsc --build .",
"withdraw": "node dist/src/withdraw.js",
"manage": "node dist/src/managePrice.js",
"manageChoice": "node dist/src/manageChoice.js",
"eventsListener": "node dist/src/eventsListener.js",
"destroy": "node dist/src/destroy.js ",
"bot": "node dist/src/bot.js",
"parameters": "node dist/src/parameters.js",
"claim": "node dist/src/claimOnBehalf.js",
"bet": "node dist/src/userActions.js",
"action": "node dist/src/userActions.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@alephium/cli": "^0.41.0",
"@alephium/web3": "^0.41.0",
"@alephium/web3-wallet": "^0.41.0",
"@types/redis": "^4.0.11",
"await-semaphore": "^0.1.3",
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"coingecko-api-v3": "^0.0.29",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"morgan": "^1.10.0",
"node-telegram-bot-api": "^0.64.0",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"prisma": "^5.7.1",
"redis": "^4.6.12",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.35.2",
"sqlite3": "^5.1.7",
"twitter-api-v2": "^1.15.2"
},
"devDependencies": {
"@alephium/web3-test": "^0.41.0",
"@types/better-sqlite3": "^7.6.8",
"@types/body-parser": "^1.19.5",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.0.0 <22.0.0",
"npm": ">=7.0.0"
}
}