-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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": "nodejs-example",
"version": "1.0.0",
"description": "Api example using nodejs and express",
"main": "index.js",
"scripts": {
"develop": "nodemon --exec src --exec babel-node src",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pillowslept/nodejs-example.git"
},
"author": "Juan Camilo Velásquez Vanegas",
"license": "ISC",
"bugs": {
"url": "https://github.com/pillowslept/nodejs-example/issues"
},
"homepage": "https://github.com/pillowslept/nodejs-example#readme",
"dependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-group-routes": "^1.1.0",
"express-list-endpoints": "^4.0.1",
"http-status": "^1.4.2",
"mysql2": "^1.7.0",
"pdfkit": "^0.10.0",
"schema-inspector": "^2.0.0",
"sequelize": "^5.21.5",
"simple-node-logger": "^18.12.24"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"eslint": "^6.8.0",
"nodemon": "^2.0.3"
}
}