-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 989 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 989 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
31
32
{
"name": "node-project-setup",
"version": "1.0.0",
"description": "This is a basic setup for a NodeJS project",
"author": "Mattias E. Mignone <memignone@gmail.com>",
"license": "MIT",
"main": "server.js",
"repository": "https://github.com/memignone/Integration-project.git",
"scripts": {
"build": "npm run clean && babel -d ./build ./src -s",
"clean": "rm -rf ./build && mkdir build",
"dev": "nodemon --legacy-watch --exec babel-node ./src/server.js",
"start": "node ./build/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"mongodb",
"nodejs"
],
"dependencies": {
"express": "^4.16.4",
"mongodb": "^3.1.13"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"nodemon": "^1.18.10"
}
}