-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "docker-express-typescript-microservice",
"version": "1.0.0",
"description": "Small example of a microservice written in nodeJS utilising typescript and express",
"main": "src/index.ts",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bevenio/docker-express-typescript-microservice.git"
},
"author": "Benjamin Brachmann",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.2",
"express-validator": "^6.15.0",
"mongodb": "^5.1.0",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"typescript-json-schema": "^0.55.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"openapi-typescript": "^6.1.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
}
}