-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.11 KB
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
{
"name": "vast-obo-back",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node .",
"prebuild": "npm run lint",
"lint:fix": "eslint --cache --ext .ts . --fix",
"lint": "eslint --cache --ext .ts .",
"server:watch": "ts-node-dev --respawn --transpile-only src/index.ts",
"test:unit": "jest --config=jest.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.4.7",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/config": "0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"applicationinsights": "^2.2.0",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"express-http-context": "^1.2.4",
"http-status-codes": "^2.2.0",
"husky": "^7.0.4",
"jest-mock-extended": "^2.0.4",
"jest-sonar-reporter": "^2.0.0",
"jest-websocket-mock": "^2.3.0",
"js-yaml": "^4.1.0",
"kafka-node": "^5.0.0",
"lodash": "^4.17.21",
"log-timestamp": "^0.3.0",
"log4js": "^6.3.0",
"migrate-mongo": "^8.2.3",
"mock-socket": "^9.1.0",
"moment": "^2.29.1",
"mongodb": "^4.3.1",
"multer": "^1.4.4",
"ncp": "^2.0.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"semantic-release": "^19.0.2",
"swagger-ui-express": "^4.3.0",
"typescript-string-operations": "^1.4.1",
"ws": "^8.4.2"
}
}