-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.18 KB
/
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
{
"name": "simple-typescript-blockchain",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"play-chain-of-events": "PRIVATE_KEY=62d101759086c306848a0c1020922a78e8402e1330981afe9404d0ecc0a4be3d npx ts-node codebase/chain-of-events-test.ts",
"play-node-a": "PORT=3000 PRIVATE_KEY=62d101759086c306848a0c1020922a78e8402e1330981afe9404d0ecc0a4be3d npx ts-node codebase/node-A-test.ts",
"play-node-b": "PORT=3001 PRIVATE_KEY=39a4a81e8e631a0c51716134328ed944501589b447f1543d9279bacc7f3e3de7 npx ts-node codebase/node-B-test.ts"
},
"dependencies": {
"@types/elliptic": "^6.4.18",
"@types/node": "^20.10.6",
"elliptic": "^6.5.4",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"typescript": "*"
}
}