-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3 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
{
"name": "money-exchange-api",
"version": "1.0.0",
"description": "Offers realtime currency conversions and history. Uses https://exchangeratesapi.io/ API internally.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node dist/server.js",
"build": "tsc",
"dev": "npm run build && npm run watch",
"watch": "concurrently -k -p '[{name}]' -n 'TypeScript,Node' 'npm run watch-ts' 'npm run watch-node'",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"test": "jest --forceExit --coverage --verbose",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p '[{name}]' -n 'TypeScript,Node' -c 'yellow.bold,cyan.bold' 'npm run watch-ts' 'npm run serve-debug'",
"lint": "tslint-config-prettier-check ./tslint.json",
"docker-build-and-run": "docker build -t image-wwc . && docker run --name container-wwc -p 8080:8080 image-wwc",
"docker-stop-and-clear": "(docker stop container-wwc || true) && (docker rm container-wwc || true)",
"docker-start": "npm run docker-stop-and-clear && npm run build && npm run docker-build-and-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udayvunnam/money-exchange-api.git"
},
"keywords": [
"currency",
"conversion",
"money",
"exchange",
"typescript"
],
"author": "Uday Vunnam",
"license": "MIT",
"bugs": {
"url": "https://github.com/udayvunnam/money-exchange-api/issues"
},
"homepage": "https://github.com/udayvunnam/money-exchange-api#readme",
"dependencies": {
"@hapi/joi": "^15.0.3",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"firebase-admin": "^7.3.0",
"helmet": "^3.18.0",
"http-status": "^1.3.2",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.16.1",
"@types/hapi__joi": "^15.0.1",
"@types/helmet": "0.0.43",
"@types/http-status": "^0.2.30",
"@types/jest": "^24.0.13",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.2",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"prettier": "1.17.1",
"pretty-quick": "^1.10.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}