-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "node-back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon backend/index.js",
"socket": "nodemon backend/socketServer.js",
"dev": "concurrently \"npm run server\"npm run frontend\"\"",
"server": "nodemon backend/index.js",
"client": "npm run start --prefix frontend",
"build": "cross-env NODE_ENV=production node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TM-OBD/node-back.git"
},
"author": "Zerman Karim",
"keywords": [],
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"google-auth-library": "^9.6.3",
"googleapis": "^133.0.0",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.9"
},
"devDependencies": {
"@types/express": "^4.17.17",
"concurrently": "^8.1.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.22"
}
}