-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "pistagram",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "Backend/server.js",
"scripts": {
"dev": "nodemon ./Backend/server.js",
"prod": "node ./Backend/server.js",
"build-frontend": "cd Frontend && npm install && npm run build",
"build": "npm install && npm run build-frontend"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.3",
"prom-client": "^15.1.2",
"response-time": "^2.3.2",
"socket.io": "^4.7.5",
"validator": "^13.11.0",
"winston": "^3.13.0",
"winston-loki": "^6.1.2"
},
"devDependencies": {
"@types/node": "^20.11.30",
"nodemon": "^3.1.0"
}
}