-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node './src/withdrawal_harvester/main.ts' & go run './src/highload_wallet_server/main.go' & ts-node 'ts-node ./server/index.ts'",
"start:dev": "ts-node ./src/server/index.ts",
"start:postgres": "./bash/start_postgres_container.sh"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.2.177",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.15",
"@types/mocha": "^9.0.0",
"@types/node": "^18.11.18",
"@types/semver": "^7.3.9",
"axios-request-throttle": "^1.0.0",
"chai": "^4.3.4",
"chai-bn": "^0.3.1",
"dotenv": "^16.0.3",
"fast-glob": "^3.2.11",
"mocha": "^9.1.3",
"prando": "^6.0.1",
"prettier": "^2.6.2",
"ton": "^12.1.3",
"ton-contract-executor": "^0.4.8",
"ton-crypto": "^3.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"prettier": {
"printWidth": 180
},
"mocha": {
"require": [
"chai",
"ts-node/register"
],
"timeout": 20000
},
"engines": {
"node": ">=16.15.0"
},
"dependencies": {
"@types/base64url": "^2.0.0",
"@types/dotenv": "^8.2.0",
"@types/pg": "^8.6.6",
"@types/sqlite3": "^3.1.8",
"base64url": "^3.0.1",
"express": "^4.18.2",
"logging": "^3.3.0",
"openssl": "^2.0.0",
"pg": "^8.8.0",
"semver": "^7.3.7",
"sqlite3": "^5.1.4",
"telegraf": "^3.40.0",
"tonweb": "^0.0.60"
}
}