-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "express-api-starter",
"version": "1.0.0",
"private": true,
"description": "A starter for building production-ready RESTful APIs using Node.js, Express, Mongoose and more.",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest",
"lint": "eslint ./"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@sendgrid/mail": "^8.1.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~5.0.1",
"express-rate-limit": "^5.2.3",
"helmet": "^4.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^8.8.3",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"sharp": "^0.32.6",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"supertest": "^6.0.1"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vinodnimbalkar/express-api-starter.git"
},
"keywords": [
"express",
"api",
"starter"
],
"author": "Vinod Nimbalkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinodnimbalkar/express-api-starter/issues"
},
"homepage": "https://github.com/vinodnimbalkar/express-api-starter#readme"
}