-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 898 Bytes
/
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
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": " A starting point for all express apps",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint --fix src"
},
"keywords": [],
"author": "Shreesh Kulkarni <[email protected]> (https://codekulkarni.com)",
"repository": {
"type": "git",
"url": "https://github.com/sgkul2000/express-boilerplate"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.25.3",
"nodemon": "^2.0.15"
}
}