-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 909 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 909 Bytes
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
{
"name": "chaos-comm",
"version": "0.1.0",
"description": "REST API for the Chaos Unit to receive commands from the Chaos Controller",
"main": "index.js",
"scripts": {
"dev": "ts-node src/ioc/root.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrollScripts/chaos-comm.git"
},
"author": "OpenChaos",
"license": "ISC",
"bugs": {
"url": "https://github.com/TrollScripts/chaos-comm/issues"
},
"homepage": "https://github.com/TrollScripts/chaos-comm#readme",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.2.0",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.12"
}
}