-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.03 KB
/
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
39
{
"name": "express_js_crud_operation_apis",
"version": "1.0.0",
"description": "NodeJS Express Crud operations REST APIs with MVC Design pattern and Mysql.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "source .env; nodemon ..."
},
"repository": {
"type": "git",
"url": "git+https://github.com/supuna97/express_js_crud_operation_apis.git"
},
"keywords": [
"nodejs",
"expressjs",
"mvc",
"mysql",
"nodemon",
"crud"
],
"author": "Supun Nanayakkara",
"license": "ISC",
"bugs": {
"url": "https://github.com/supuna97/express_js_crud_operation_apis/issues"
},
"homepage": "https://github.com/supuna97/express_js_crud_operation_apis#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"express-json-validator-middleware": "^3.0.1",
"express-validator": "^7.0.1",
"mysql2": "^3.9.7",
"sequelize": "^6.33.0"
}
}