-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"name": "ez_tickets_backend",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "node -r dotenv-flow/config src/server.js -- --dotenv-flow-path=envs",
"production": "cross-env NODE_ENV=production npm start",
"dev": "cross-env NODE_ENV=dev DOTENV_FLOW_PATH=envs nodemon -r dotenv-flow/config",
"test": "mocha ./test/* --exit",
"lint": "eslint src/"
},
"keywords": [],
"author": "Abdur Rafay Saleem",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"deep-email-validator": "^0.1.21",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.2.5",
"otp-generator": "^3.0.0"
},
"devDependencies": {
"axios": "^0.21.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"supertest": "^6.1.3"
}
}