-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 733 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 733 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
{
"name": "learning_node",
"version": "1.0.0",
"description": "Complete Node Js Guide",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"start-server": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://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@github.com/singh0130/learning_node.git"
},
"author": "Mohit Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/singh0130/learning_node/issues"
},
"homepage": "https://github.com/singh0130/learning_node#readme",
"devDependencies": {
"nodemon": "^2.0.16"
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1"
}
}