-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 941 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 941 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
36
37
38
39
40
{
"name": "nodeapi",
"version": "1.0.0",
"description": "Rest API with Node, Express & MySQL",
"main": "index.js",
"scripts": {
"babel-node": "babel-node --presets=@babel/preset-env",
"dev": "nodemon --exec npm run babel-node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cecortes/NodeAPI.git"
},
"keywords": [
"REST",
"API",
"NODE",
"EXPRESS",
"MySQL"
],
"author": "César López",
"license": "MIT",
"bugs": {
"url": "https://github.com/cecortes/NodeAPI/issues"
},
"homepage": "https://github.com/cecortes/NodeAPI#readme",
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"promise-mysql": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"morgan": "^1.10.0",
"nodemon": "^2.0.19"
}
}