-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "project-lebanon-data-service",
"version": "1.0.0",
"main": "index.js",
"config": {
"protocol": "http",
"host": "localhost",
"port": 3000,
"contextRoot": ""
},
"scripts": {
"clean": "rimraf dist",
"test": "jest --coverage",
"tdd": "jest --watch",
"prebuild": "npm run clean",
"build": "tsc && cd web-app && npm run build && cd .. && cp -R web-app/build/ dist/src/web-app/",
"swagger": "swaggerGen -c ./swagger.config.json",
"start": "npm run serve",
"serve": "node dist/src",
"upgrade-interactive": "npm-check --update",
"clear_jest": "jest --clearCache",
"dev": "concurrently --kill-others \"nodemon\" \"cd web-app && npm start\"",
"install_all": "npm i && cd web-app && npm i"
},
"dependencies": {
"@cloudant/cloudant": "^4.3.0",
"@fortawesome/react-fontawesome": "^0.1.16",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.13.2",
"cls-hooked": "^4.2.2",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"express-pino-logger": "^4.0.0",
"ibm-cos-sdk": "^1.9.0",
"jaeger-client": "^3.18.0",
"multer": "^1.4.2",
"opentracing": "^0.14.4",
"pino": "^6.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"rxjs": "^6.5.2",
"superagent": "^5.2.2",
"tslib": "^1.11.1",
"typedi": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/body-parser": "^1.19.0",
"@types/cls-hooked": "^4.3.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.17.3",
"@types/express-pino-logger": "^4.0.2",
"@types/jaeger-client": "^3.15.4",
"@types/jest": "^25.1.4",
"@types/jest-plugin-context": "^2.9.2",
"@types/multer": "^1.4.4",
"@types/node": "^13.9.0",
"@types/pino": "^6.0.0",
"@types/superagent": "^4.1.7",
"@types/supertest": "^2.0.8",
"@types/yargs": "^15.0.4",
"babel-jest": "^25.2.4",
"husky": "^4.3.0",
"jest": "^25.2.4",
"jest-localstorage-mock": "^2.4.6",
"jest-plugin-context": "^2.9.0",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^2.0.7",
"npm-check": "^6.0.1",
"pino-pretty": "^3.6.1",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"overrides": {
"routing-controllers": {
"class-validator": "^0.13.2",
"multer": "^1.4.5-lts.1"
},
"[email protected]": {
"multer": "^1.4.5-lts.1"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test -- --watchAll=false"
}
}
}