-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "teylor-takehome",
"version": "0.1.0",
"description": "Teylor take home assignment",
"repository": {},
"keywords": [],
"author": "Abel Simon",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src/bin/server.ts",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"start": "node dist/bin/server.js",
"copyFx": "cp -r src/core/exchangeRates/fxData dist/core/exchangeRates/",
"test": "jest",
"lint:fix": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix"
},
"dependencies": {
"@google-cloud/secret-manager": "^3.2.0",
"@hapi/joi": "17.1.1",
"@types/morgan": "^1.9.2",
"@types/node-cache": "^4.2.5",
"@types/yamljs": "^0.2.31",
"body-parser": "1.19.0",
"compression": "1.7.4",
"csv-parser": "^3.0.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemon": "2.0.4",
"pg": "^8.5.1",
"postgres": "^1.0.2",
"superagent": "^6.1.0",
"swagger-ui-express": "4.1.4",
"typeorm": "^0.2.30",
"winston": "3.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.6",
"@types/hapi__joi": "17.1.2",
"@types/jest": "26.0.0",
"@types/node": "14.0.13",
"@types/supertest": "2.0.9",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"eslint": "7.3.1",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.21.2",
"jest": "26.1.0",
"jest-express": "1.12.0",
"supertest": "4.0.2",
"ts-jest": "26.1.1",
"typescript": "3.9.5"
},
"license": "MIT"
}