-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 2.33 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": "ton-src-backend",
"dependencies": {
"@babel/preset-env": "^7.18.6",
"@orbs-network/ton-access": "^2.3.3",
"@ton-community/contract-verifier-sdk": "^1.1.2",
"async": "^3.2.4",
"base64url": "^3.0.1",
"bigint-buffer": "^1.1.5",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.5.1",
"express-request-id": "^2.0.1",
"ipfs-http-client": "^56.0.0",
"ipfs-only-hash": "^4.0.0",
"ipfs-utils": "^9.0.14",
"mkdirp": "^1.0.4",
"multer": "^1.4.5-lts.1",
"tact-1.0.0": "npm:@tact-lang/compiler@1.0.0",
"tact-1.1.0": "npm:@tact-lang/compiler@1.1.0",
"tact-1.1.1": "npm:@tact-lang/compiler@1.1.1",
"tact-1.1.2": "npm:@tact-lang/compiler@1.1.2",
"tact-1.1.3": "npm:@tact-lang/compiler@1.1.3",
"tact-1.1.4": "npm:@tact-lang/compiler@1.1.4",
"tact-1.1.5": "npm:@tact-lang/compiler@1.1.5",
"tact-1.2.0": "npm:@tact-lang/compiler@1.2.0",
"tact-1.3.0": "npm:@tact-lang/compiler@1.3.0",
"tact-1.3.1": "npm:@tact-lang/compiler@1.3.1",
"tact-1.4.0": "npm:@tact-lang/compiler@1.4.0",
"tact-1.4.1": "npm:@tact-lang/compiler@1.4.1",
"tact-1.4.2": "npm:@tact-lang/compiler@1.4.2",
"tact-1.4.3": "npm:@tact-lang/compiler@1.4.3",
"tact-1.4.4": "npm:@tact-lang/compiler@1.4.4",
"tact-1.5.0": "npm:@tact-lang/compiler@1.5.0",
"tact-1.5.1": "npm:@tact-lang/compiler@1.5.1",
"tact-1.5.2": "npm:@tact-lang/compiler@1.5.2",
"ton": "^13.4.1",
"ton-core": "^0.49.0",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"tweetnacl": "^1.0.3",
"typescript": "^4.8.4"
},
"scripts": {
"__prebuild": "tslint -p tsconfig.json --fix",
"build": "tsc --noEmit",
"test": "jest",
"__prestart": "npm run build",
"start": "ts-node --transpile-only src/server",
"prepare": "husky install"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-request-id": "^1.4.3",
"@types/jest": "^28.1.6",
"@types/mkdirp": "^1.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.45",
"@types/semver": "^7.5.8",
"husky": "^8.0.0",
"jest-mock-extended": "^2.0.7",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3"
},
"engines": {
"node": ">=22.0.0"
}
}