-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 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
{
"name": "node-worker",
"version": "1.0.0",
"description": "Slave worker for P2P Network",
"main": "app.ts",
"scripts": {
"start": "ts-node --project tsconfig.json src/app.ts",
"dev": "nodemon dist/app.js",
"build": "tsc"
},
"author": "Paulius Kutka | Tomas Eglinskas",
"license": "ISC",
"dependencies": {
"@azure/arm-compute": "^11.0.0",
"@azure/arm-containerservice": "^10.0.0",
"@azure/arm-network": "^18.0.0",
"@azure/ms-rest-nodeauth": "^3.0.3",
"axios": "^0.19.0",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"koa": "^2.8.1",
"koa-body": "^4.1.1",
"koa-router": "^7.4.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"devDependencies": {
"@types/koa": "^2.0.51",
"@types/koa-router": "^7.0.42",
"@types/node": "^12.11.7",
"nodemon": "^1.19.4"
}
}