-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 868 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
31
32
{
"name": "express-mongodb-crud",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"build": "babel src -d dist && ncp src/views dist/views && ncp src/public dist/public",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Dilam",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.18.9",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"mongoose": "^6.5.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"ncp": "^2.0.0",
"nodemon": "^2.0.19"
}
}