-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 750 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
29
30
{
"name": "node-mongodb-crud",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.4",
"mongoose": "^6.0.11",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"ncp": "^2.0.0",
"nodemon": "^2.0.13"
},
"scripts": {
"dev": "nodemon ./src --exec babel-node",
"build": "babel src -d dist && ncp src/views dist/views && ncp src/public dist/public",
"start": "node ./dist"
},
"keywords": [],
"author": "",
"license": "ISC"
}