-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@random-guys/siber",
"version": "0.15.1",
"description": "Controllers as classes... with batteries 😬",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jest --runInBand"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/random-guys/siber.git"
},
"bugs": {
"url": "https://github.com/random-guys/siber/issues"
},
"homepage": "https://github.com/random-guys/siber#readme",
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/cors": "^2.8.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/faker": "^5.5.5",
"@types/jest": "^24.0.14",
"@types/lodash": "^4.14.134",
"@types/response-time": "^2.3.3",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.5",
"body-parser": "^1.19.0",
"faker": "^5.5.3",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"@random-guys/bucket": "^0.10.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"inversify": "^5.0.1",
"joi": "^17.4.0",
"lodash": "^4.17.15",
"prom-client": "^12.0.0",
"response-time": "^2.3.2",
"uuid": "^3.3.3"
},
"files": [
"dist/"
]
}