-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 925 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 925 Bytes
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
{
"name": "tonswap",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:tonswap/dex.git",
"scripts": {
"build": "./scripts/build.sh",
"test": "npx jest test/amm-minter.spec.ts",
"test-bus": "npx jest test/bus.spec.ts",
"e2e": "ts-node deploy/e2e.ts",
"deploy": "ts-node deploy/deploy.ts",
"build:web": "ts-node deploy/export-hex.ts"
},
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"axios-request-throttle": "^1.0.0",
"bn.js": "^5.2.0",
"jest": "^27.5.1",
"ton": "^12.0.1",
"ton-contract-executor": "^0.5.2",
"ton-tvm-bus": "^0.0.8",
"tonweb": "^0.0.38",
"tonweb-mnemonic": "^1.0.1",
"typescript": "^4.5.5"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.4.0",
"ts-node": "^10.7.0"
}
}