-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.98 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
98
99
100
101
102
103
104
105
106
{
"name": "sampleapp",
"version": "1.0.0",
"license": "ISC",
"private": true,
"description": "Sample",
"author": {
"name": "Actionable Science",
"email": "[email protected]"
},
"repository": {
"type": "git"
},
"keywords": [
"platform",
"express"
],
"main": "app.js",
"files": [
"app.js"
],
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.14",
"@types/node-fetch": "^3.0.3",
"nodemon": "^2.0.15",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "tsc --build",
"start": "tsc-watch --onSuccess \"nodemon -r ./instrumentation.ts dist/app.js \"",
"debug": "tsc-watch --onSuccess \"nodemon -r ./instrumentation.ts dist/app.js\"",
"debug-brk": "tsc-watch --onSuccess \"nodemon --inspect-brk dist/app.js\""
},
"dependencies": {
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/api-logs": "^0.45.1",
"@opentelemetry/auto-instrumentations-node": "^0.40.2",
"@opentelemetry/exporter-logs-otlp-http": "^0.45.1",
"@opentelemetry/exporter-metrics-otlp-http": "^0.45.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.45.1",
"@opentelemetry/sdk-logs": "^0.45.1",
"@opentelemetry/sdk-metrics": "^1.18.1",
"@opentelemetry/sdk-node": "^0.45.1",
"async": "^3.2.5",
"async-redis": "^2.0.0",
"axios": "^1.6.2",
"body-parser": "^1.18.3",
"browserslist": "^4.16.5",
"camelize": "^1.0.0",
"compression": "^1.7.4",
"continuation-local-storage": "^3.2.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cron-parser": "^2.15.0",
"decamelize": "^2.0.0",
"dot-prop": "^4.2.1",
"ejs": "^3.1.5",
"env-yaml": "^0.1.2",
"event-stream": "^4.0.1",
"express": "^4.16.3",
"express-interceptor": "^1.2.0",
"express-list-endpoints": "^4.0.1",
"express-response-handler": "^1.4.1",
"express-session": "^1.15.6",
"expression-eval": "^2.0.0",
"generic-pool": "^3.9.0",
"http-proxy-middleware": "^0.18.0",
"ip-range-check": "^0.2.0",
"isemail": "^3.2.0",
"joi": "^17.6.0",
"joi-date-extensions": "^1.2.0",
"json-templater": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"kind-of": "^6.0.3",
"lodash": "4.17.21",
"memorystore": "^1.6.1",
"mixin-deep": "^1.3.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"morgan": "^1.9.0",
"node-fetch": "^2.6.0",
"numeral": "^2.0.6",
"odata-parser": "^1.4.1",
"path-parse": "^1.0.7",
"pg": "^8.7.1",
"pg-hstore": "^2.3.2",
"promise": "^8.0.3",
"redis": "^4.6.11",
"request": "^2.88.0",
"rsmq": "^0.12.4",
"rsmq-worker": "^0.4.3",
"sequelize": "^6.15.0",
"set-value": "^4.0.1",
"simple-crypto-js": "^3.0.0",
"strformat": "0.0.7",
"swagger-ui-express": "^4.1.3",
"sync-rest-client": "^1.0.3",
"underscore": "^1.12.1",
"validator": "^13.6.0",
"winston": "^3.11.0"
}
}