-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.47 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": "ms-template",
"version": "1.0.0",
"description": "microservice template",
"scripts": {
"test": "mocha test",
"build": "tsc",
"start": "node -r './dist/tracing.js' -r source-map-support/register dist/server.js",
"debug": "npm run build && npm run watch-debug",
"trace": "node -r './dist/tracing.js' -r source-map-support/register dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"serve-debug": "nodemon --inspect -r './dist/tracing.js' dist/server.js",
"watch-ts": "tsc -w",
"check": "npm run check-ts && npm run check-lint && npm run check-format && npm run check-spell",
"check-ts": "tsc --noEmit && tsc --project test/tsconfig.json --noEmit",
"check-lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"check-format": "prettier -c 'src/**/*.ts' 'test/**/*.ts'",
"check-spell": "cspell 'src/**/*ts' 'test/**/*ts'",
"create-migration": "node-pg-migrate create",
"migrate": "node-pg-migrate",
"dump-structure": "npm run migrate up && . bin/dump-structure"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/coders51/ms-training-template/ms-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/coders51/ms-training-template/ms-template/issues"
},
"homepage": "https://gitlab.com/coders51/ms-training-template/ms-template#readme",
"devDependencies": {
"@faker-js/faker": "^8.0.1",
"@tsconfig/node-lts": "^18.12.2",
"@types/amqplib": "^0.10.1",
"@types/chai": "^4.3.5",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.14.2",
"@types/pg": "^8.10.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chai": "^4.3.7",
"concurrently": "^8.0.1",
"cspell": "^6.31.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"nodemon": "^2.0.22",
"postgres-schema-ts": "^0.4.0",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/auto-instrumentations-node": "^0.37.0",
"@opentelemetry/exporter-jaeger": "^1.13.0",
"@opentelemetry/exporter-prometheus": "^0.39.1",
"@opentelemetry/resources": "^1.13.0",
"@opentelemetry/sdk-metrics-base": "^0.29.2",
"@opentelemetry/sdk-node": "^0.39.1",
"@opentelemetry/semantic-conventions": "^1.13.0",
"@turf/turf": "^6.5.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"amqplib": "^0.10.3",
"compression": "^1.7.4",
"express": "^4.18.2",
"form-data": "^4.0.0",
"got": "^11.8.5",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.0",
"prom-client": "^14.2.0",
"source-map-support": "^0.5.21",
"sql-template-tag": "^4.1.0",
"uuid": "^9.0.0",
"winston": "^3.9.0"
}
}