forked from 123MwanjeMike/nodejs_mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 851 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 851 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
{
"name": "nodejs_mysql",
"version": "1.0.0",
"description": "Node.js Restful CRUD API with Node.js, Express and MySQL",
"main": "server.js",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"prepare": "husky install",
"test": "newman run ./tests/Nodejs_mysql.postman_collection.json -e ./tests/Node_Mysql_Mock_Server.postman_environment.json"
},
"keywords": [
"nodejs",
"express",
"mysql",
"restapi"
],
"author": "Mike Mwanje",
"license": "MIT",
"dependencies": {
"dotenv": "^14.2.0",
"express": "^4.17.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3"
}
}