- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
24 lines (24 loc) · 524 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 524 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
{
"name": "node",
"version": "1.0.0",
"description": "test project",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./app.js",
"dev": "nodemon ./app.js",
"stop": "lsof -ti :3000 | xargs kill"
},
"author": "Prakash",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"mysql": "^2.16.0"
},
"devDependencies": {
"nodemon": "^1.18.10"
}
}