-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 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": "envio-indexer-erc20-app",
"version": "0.1.0",
"scripts": {
"build": "echo 'Build skipped for this package'",
"dev": "envio dev",
"lint": "echo 'No lint script defined for this guide'",
"lint:fix": "eslint src/ --fix",
"format": "echo 'No format script defined for this guide'",
"test": "mocha",
"clean": "tsc --clean",
"watch": "tsc --watch",
"mocha": "ts-mocha test/**/*.ts",
"codegen": "envio codegen",
"start": "ts-node generated/src/Index.bs.js"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "20.8.8",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "5.2.2",
"@types/chai": "^4.3.11",
"@types/mocha": "10.0.6",
"ts-mocha": "^10.0.0",
"ts-node": "10.9.1",
"mocha": "10.2.0"
},
"dependencies": {
"chai": "4.3.10",
"envio": "0.0.31",
"ethers": "6.8.0"
}
}