-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 915 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
33
34
35
{
"name": "robible-api",
"version": "1.0.0",
"description": "robible.com",
"main": "server.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src -d dist --source-maps",
"start:dev": "npm i && nodemon src/server.js --exec babel-node",
"start:prod": "npm run build && node dist/server.js",
"start": "node dist/server.js",
"format": "prettier --write \"src/**/*.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"mongoose": "^5.9.24",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
}
}