-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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": "opencollab",
"version": "1.0.0",
"description": "Real-time collaborative code editor for technical interviews",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"serve": "node serve.js",
"preview": "node serve.js",
"build": "npm run build:client",
"build:client": "echo 'Client is static, no build needed'",
"deploy": "npm run build && npm start"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"firebase-admin": "^11.8.0",
"helmet": "^7.0.0",
"jsdom": "^22.0.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"uuid": "^9.0.0",
"geoip-lite": "^1.4.7",
"request-ip": "^3.3.0",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=16.0.0"
}
}