-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "github-actions-ec2-pipeline",
"version": "1.0.0",
"description": "Node/Express app with GitHub Actions release automation for AWS EC2 and PM2",
"main": "src/server.js",
"engines": {
"node": ">=22 <25"
},
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "echo 'Build process completed - ready for deployment'",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"nodejs",
"express",
"github-actions",
"ci-cd",
"aws",
"ec2",
"devops"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"supertest": "^7.1.4"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js",
"!src/server.js"
]
}
}