blob: bd6ec20c944081ec71c740dda8cd2aac957ba059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"name": "funwithnode",
"version": "1.0.0",
"description": "root to test drive node and expres",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js",
"dev": "nodemon index.js"
},
"author": "Ibrahim Mkusa",
"license": "MIT",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}
|