-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 755 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
{
"name": "Holograph Indexer",
"version": "0.1.0",
"scripts": {
"clean": "tsc --clean",
"build": "tsc --build",
"watch": "tsc --watch",
"mocha": "ts-mocha test/**/*.ts",
"codegen": "envio codegen",
"dev": "envio dev",
"test": "pnpm mocha",
"start": "ts-node generated/src/Index.bs.js"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.8.8",
"@types/uuid": "^10.0.0",
"mocha": "10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"chai": "4.3.10",
"envio": "1.2.0",
"ethers": "6.8.0",
"uuid": "^10.0.0"
},
"optionalDependencies": {
"generated": "./generated"
}
}