-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 841 Bytes
/
package.json
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
{
"name": "nodejs-api-template",
"version": "1.0.0",
"description": "A nodejs API template project to get started with your API application",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Disura-Randunu/nodejs-api-template.git"
},
"author": "Disura Randunu",
"license": "ISC",
"bugs": {
"url": "https://github.com/Disura-Randunu/nodejs-api-template/issues"
},
"homepage": "https://github.com/Disura-Randunu/nodejs-api-template#readme",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.6"
}
}