You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
{ |
|
"name": "agorata-contracts", |
|
"description": "", |
|
"version": "0.0.0", |
|
"license": "MIT", |
|
"author": "", |
|
"scripts": { |
|
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'", |
|
"test": "node --no-experimental-fetch node_modules/mocha/bin/mocha --exit test/**/*.spec.ts", |
|
"build": "ts-node ./build/_build.ts", |
|
"deploy": "ts-node ./build/_deploy.ts", |
|
"deploy:testnet": "ts-node ./build/_deploy.ts", |
|
"postinstall_": "ts-node build/_setup.ts", |
|
"cli": "node --no-warnings --loader ts-node/esm bin/cli.js", |
|
"api": "node --no-warnings --loader ts-node/esm bin/api.js " |
|
}, |
|
"devDependencies": { |
|
"@swc/core": "^1.3.25", |
|
"@types/bn.js": "^5.1.1", |
|
"@types/chai": "^4.3.0", |
|
"@types/mocha": "^9.0.0", |
|
"@types/semver": "^7.3.9", |
|
"axios-request-throttle": "^1.0.0", |
|
"chai": "^4.3.4", |
|
"chai-bn": "^0.3.1", |
|
"dotenv": "^16.0.0", |
|
"fast-glob": "^3.2.11", |
|
"mocha": "^9.1.3", |
|
"prando": "^6.0.1", |
|
"prettier": "^2.6.2", |
|
"ton": "^12.3.3", |
|
"ton-contract-executor": "^0.4.8", |
|
"ton-crypto": "^3.1.0", |
|
"ts-node": "^10.4.0", |
|
"typescript": "^4.5.4" |
|
}, |
|
"prettier": { |
|
"printWidth": 180 |
|
}, |
|
"mocha": { |
|
"require": [ |
|
"chai", |
|
"ts-node/register" |
|
], |
|
"timeout": 20000 |
|
}, |
|
"engines": { |
|
"node": ">=16.15.0" |
|
}, |
|
"dependencies": { |
|
"@tonconnect/protocol": "^2.0.1", |
|
"semver": "^7.3.7", |
|
"subcommand": "^2.1.1", |
|
"ton-compiler": "^2.0.0", |
|
"express": "^4.18.2" |
|
} |
|
}
|
|
|