-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·45 lines (45 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "node-express-es6-starter",
"version": "1.0.0",
"private": true,
"description": "Node/Express.js start project supporting es6 module",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.js --exec babel-node",
"build": "babel src -d dist --copy-files",
"postinstall": "npm run build"
},
"keywords": [
"Node",
"Express",
"RestAPI",
"MongoDB",
"Mongoose",
"ES6",
"Starter"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^2.6.9",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"mongoose": "^5.13.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"nodemon": "^2.0.9"
},
"engines": {
"node": ">=12.0.0"
}
}