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.

48 lines
1.2 KiB

2 years ago
{
"name": "tonstarter-contracts",
"description": "",
"version": "0.0.0",
"license": "MIT",
"author": "",
"scripts": {
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'",
"test": "mocha --exit test/**/*.spec.ts",
"build": "ts-node ./build/build.ts",
"deploy": "ts-node ./build/deploy.ts",
"deploy:testnet": "export TESTNET=1 && ts-node ./build/deploy.ts",
2 years ago
"postinstall": "! test -f /app/.glitchdotcom.json || test -d /app/bin || bash .setup.glitch.sh",
"start": "npm run build"
2 years ago
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
2 years ago
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"axios-request-throttle": "^1.0.0",
2 years ago
"chai": "^4.3.4",
"chai-bn": "^0.3.1",
"dotenv": "^16.0.0",
"fast-glob": "^3.2.11",
2 years ago
"mocha": "^9.1.3",
"prando": "^6.0.1",
2 years ago
"prettier": "^2.6.2",
"ton": "^9.6.3",
"ton-contract-executor": "^0.4.8",
"ton-crypto": "^3.1.0",
2 years ago
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"prettier": {
"printWidth": 180
},
"mocha": {
"require": [
"chai",
"ts-node/register"
2 years ago
],
"timeout": 10000
},
"engines": {
"node": ">=14.0.0"
2 years ago
}
}