Skip to content

Commit 72f77df

Browse files
Update package.json for project details and dependencies
1 parent 56b8735 commit 72f77df

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

package.json

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
{
2-
"name": "lambda-crud",
2+
"name": "my-node-app",
33
"version": "1.0.0",
4-
"description": "Node.js Lambda CRUD project with CI/CD",
4+
"description": "A sample Node.js project with Axios and other dependencies",
55
"main": "index.js",
6-
"type": "commonjs",
76
"scripts": {
87
"start": "node index.js",
9-
"test": "jest",
10-
"build": "echo \"No build step needed\""
8+
"dev": "nodemon index.js",
9+
"test": "echo \"Error: no test specified\" && exit 1"
1110
},
12-
"keywords": [],
13-
"author": "",
14-
"license": "ISC",
11+
"keywords": [
12+
"node",
13+
"axios",
14+
"express"
15+
],
16+
"author": "Your Name",
17+
"license": "MIT",
1518
"dependencies": {
16-
"pg": "^8.16.3"
19+
"axios": "1.9.0",
20+
"express": "^4.18.2",
21+
"dotenv": "^16.3.1",
22+
"cors": "^2.8.5",
23+
"mongoose": "^7.5.0"
1724
},
1825
"devDependencies": {
19-
"dotenv": "^17.2.3",
20-
"jest": "^29.7.0"
21-
},
22-
"jest": {
23-
"testEnvironment": "node"
26+
"nodemon": "^3.0.2",
27+
"eslint": "^8.48.0"
2428
}
2529
}

0 commit comments

Comments
 (0)