-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
30
31
32
33
34
35
36
{
"name": "firstblockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc",
"node_1": "ts-node-dev --respawn --prefer-ts src/networkNode.ts 3001 http://localhost:3001",
"node_2": "ts-node-dev --respawn --prefer-ts src/networkNode.ts 3002 http://localhost:3002",
"node_3": "ts-node-dev --respawn --prefer-ts src/networkNode.ts 3003 http://localhost:3003",
"node_4": "ts-node-dev --respawn --prefer-ts src/networkNode.ts 3004 http://localhost:3004",
"node_5": "ts-node-dev --respawn --prefer-ts src/networkNode.ts 3005 http://localhost:3005",
"test": "vitest"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"sha256": "^0.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/sha256": "^0.2.0",
"axios-mock-adapter": "^1.22.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"vitest": "^1.2.2"
}
}