-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1017 Bytes
/
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
{
"name": "mern-clarifai-face-recognition",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "concurrently --kill-others-on-fail \" npm run server\" \" npm run client\"",
"start": "node backend/server.js",
"client": "cd client && npm run dev",
"server": "nodemon backend/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"busboy": "^1.6.0",
"clarifai-nodejs-grpc": "^9.7.0",
"cloudinary": "^1.40.0",
"concurrently": "^8.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-mongo-sanitize": "^2.2.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"validator": "^13.11.0",
"vite": "^4.4.9"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}