-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.25 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": "blockchain",
"version": "0.0.1",
"description": "Blockchain implementation",
"main": "./src/app.ts",
"scripts": {
"test": "npx ts-node src/test.ts",
"start": "nodemon --watch src --exec npx ts-node src/app.ts 3000 http://localhost:3000",
"node_1": "nodemon --watch src --exec npx ts-node src/app.ts 3001 http://localhost:3001",
"node_2": "nodemon --watch src --exec npx ts-node src/app.ts 3002 http://localhost:3002",
"node_3": "nodemon --watch src --exec npx ts-node src/app.ts 3003 http://localhost:3003",
"node_4": "nodemon --watch src --exec npx ts-node src/app.ts 3004 http://localhost:3004",
"node_5": "nodemon --watch src --exec npx ts-node src/app.ts 3005 http://localhost:3005"
},
"author": "jinlee0",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"immutable": "^5.0.0-beta.4",
"nodemon": "^1.17.3",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"sha256": "^0.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.1",
"@types/request-promise": "^4.1.51",
"@types/sha256": "^0.2.2",
"@types/uuid": "^9.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}