-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 909 Bytes
/
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
{
"name": "@exoda-app/tokens",
"version": "0.0.21",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -d -p tsconfig.json",
"predeploy": "npm test && npm run build && npm i && npm run build",
"deploy": "npm version patch --force && npm publish --access public",
"test": "jest",
"generate:types": "typechain --target ethers-v5 --out-dir src/types/contracts './src/abis/*.json'"
},
"keywords": [],
"author": "Ian Guimaraes",
"license": "ISC",
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typechain": "^8.1.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"bignumber.js": "^9.1.1",
"ethers": "^5.1.3"
}
}