-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 790 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 790 Bytes
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
{
"name": "threads-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon threads-backend/server.js",
"start": "cross-env NODE_ENV=production node threads-backend/server.js",
"build": "npm install && npm install --prefix threads-ui && npm run build --prefix threads-ui"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.3.1",
"cookie-parser": "^1.4.6",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.1",
"socket.io": "^4.7.5"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.4"
}
}