-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 949 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 949 Bytes
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
{
"name": "ci-cd",
"version": "1.0.0",
"main": "src/server.js",
"description": "getting ready for building a complete cicd workflow to automate the process ",
"scripts": {
"start": "node src/server.js",
"test": "jest --detectOpenHandles",
"dynamodb": "docker run -p 8000:8000 amazon/dynamodb-local",
"lint": "eslint src/ tests/ --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muhammad-Ahmad17/CI-CD.git"
},
"author": "MUHAMMAD-AHMAD",
"license": "ISC",
"bugs": {
"url": "https://github.com/Muhammad-Ahmad17/CI-CD/issues"
},
"homepage": "https://github.com/Muhammad-Ahmad17/CI-CD#readme",
"dependencies": {
"aws-sdk": "^2.1692.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3"
}
}