-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
40
41
42
43
44
45
46
47
{
"name": "mvc-mongo",
"version": "1.0.0",
"description": "node app demo for mvc",
"main": "server.js",
"scripts": {
"lint": "eslint ./",
"lint:init": "eslint --init",
"lint:fix": "eslint --fix",
"start": "node server.js",
"dev": "nodemon server.js",
"prod": "nodemon server.js",
"swagger": "node ./docs/swagger.js"
},
"keywords": [
"express",
"node",
"typescript",
"mysql",
"sequelize",
"javascript"
],
"author": "Ahmed Abuwarda",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"swagger-autogen": "^2.21.10",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"express-validator": "^6.14.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.20"
}
}