forked from Mohamed-Emad-Mohamed/official-website-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "backend",
"version": "1.0.0",
"description": "Energia-backend",
"main": "index.js",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"dev-start": "concurrently \"npx nodemon index.js\" \"cd client && npm start\"",
"start": "set NODE_ENV=production && node index.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build "
},
"author": "Energia IT Team",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"firebase-admin": "^10.0.2",
"handlebars": "^4.7.7",
"joi": "^17.3.0",
"joi-password-complexity": "^4.2.1",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^10.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.10.15",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"prettier": "^2.1.2",
"socket.io": "^4.0.1",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
}
}