-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "express-docker-template",
"version": "1.0.0",
"description": "The template of containerized Express application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algonacci/express-docker-template.git"
},
"keywords": [
"Express",
"Docker"
],
"author": "Eric Julianto",
"license": "MIT",
"bugs": {
"url": "https://github.com/algonacci/express-docker-template/issues"
},
"homepage": "https://github.com/algonacci/express-docker-template#readme",
"dependencies": {
"apicache": "^1.6.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-rate-limit": "^7.1.5",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"supertest": "^6.3.3",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}