-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "country-search-node-ts",
"version": "1.0.0",
"description": "simple API-service for checking country-by-name",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon src/index.ts",
"build": "tsc --project ./",
"docker:build": "docker build -t country-search-desk:1.0.0 .",
"lint": "tslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highman95/country-search-node-ts.git"
},
"keywords": [
"country",
"country-search"
],
"author": "Emma NWAMAIFE",
"license": "ISC",
"bugs": {
"url": "https://github.com/highman95/country-search-node-ts/issues"
},
"homepage": "https://github.com/highman95/country-search-node-ts#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.2",
"@types/redis": "^2.8.32",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.13",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"redis": "^3.1.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6"
}
}