-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 906 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 906 Bytes
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
{
"name": "api-eventops",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=test&& nodemon server.js",
"start": "set NODE_ENV=dev&& nodemon server.js",
"lint": "eslint -c .eslintrc.json --ext .js ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
},
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.2",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15"
}
}