-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1015 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
{
"name": "api_rest_edn",
"version": "1.0.0 pre-release",
"description": "This is a RESTful API based on the podcast Escuela de Nada",
"main": "./src/index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"build": "babel src --out-dir dist",
"start": "node dist/index.js",
"clean": "rimraf dist",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.11.8",
"mongoose-paginate-v2": "^1.3.13",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"eslint": "^8.27.0",
"nodemon": "^2.0.6"
}
}