-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "express-api-boilerplate",
"version": "1.0.0",
"description": "This is the boilerplate setup that I use to make node apis. This comes with eslint and prettier setup, and error handlers.",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www"
},
"dependencies": {
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.7",
"debug": "~4.3.7",
"dotenv": "^16.4.5",
"express": "~4.21.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.8.2",
"morgan": "~1.10.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"prettier": "3.3.3"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/saileshbro/express-api-boilerplate.git"
},
"author": "Sailesh Dahal",
"private": true,
"bugs": {
"url": "https://gitlab.com/saileshbro/express-api-boilerplate/issues"
},
"engines": {
"node": "13.x",
"npm": "6.14.x"
},
"homepage": "https://gitlab.com/saileshbro/express-api-boilerplate#readme"
}