This repository was archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.15 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
75
76
77
78
79
{
"name": "digimon-api",
"version": "0.0.0-development",
"description": "👾 node.js powered api for digimon digital monsters.",
"main": "index.ts",
"scripts": {
"dev": "docker-compose -f docker-compose.dev.yml up",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Ricoledan/digimon-api.git"
},
"keywords": [
"boilerplate",
"starter-template"
],
"author": "Ricardo Ledan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ricoledan/digimon-api/issues"
},
"homepage": "https://github.com/Ricoledan/digimon-api#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.12.0",
"@types/morgan": "^1.9.2",
"aws-sdk": "^2.890.0",
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"fs": "*",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"mongoose": "^5.12.5",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"pm2": "^5.1.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/elasticsearch": "^5.0.37",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.21",
"@types/mongodb": "^3.6.12",
"@types/mongoose": "^5.10.5",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.35",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"husky": "^7.0.1",
"jest": "^26.6.3",
"semantic-release": "^17.4.4",
"supertest": "^6.1.5",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}