-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 949 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
33
34
35
36
{
"name": "pp-offchain-service",
"version": "1.1.2",
"description": "",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "tsx run.ts",
"test": "mocha 'tests/*.ts' --import=tsx",
"jsongen": "tsx jsongen.ts",
"build": "esbuild scriptsSrc/* --outdir=scriptsBuild --bundle --minify --target=es2020 --platform=node --out-extension:.js=.cjs && tsx ./showBuildHashes.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"bn.js": "4.12.0",
"dockerode": "^4.0.2",
"elliptic": "^6.5.5",
"ethers": "6.6.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"multiformats": "13.2.1",
"tsx": "^4.7.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.4",
"@types/sinon": "^10.0.16",
"chai": "^4.3.6",
"esbuild": "^0.20.2",
"ethereumjs-wallet": "^1.0.2",
"mocha": "^10.4.0"
}
}