-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1002 Bytes
/
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
{
"name": "Test microservice assigment",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"start": "ts-node -- ./index.ts",
"generateMock": "ts-node -- ./deviceDataGenerator.ts",
"test": "jest --forceExit"
},
"keywords": [],
"author": "Ivan Medvediev",
"nodemonConfig": {
"ignore": [
"/temp/*"
],
"delay": 2500
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/node": "^14.18.63",
"@types/supertest": "^2.0.13",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/mocha": "^10.0.2",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"read-last-lines": "^1.8.0",
"typeorm": "^0.3.17",
"winston": "^3.10.0"
}
}