Skip to content

Commit aa14fde

Browse files
committed
updated
1 parent a68c3f3 commit aa14fde

File tree

7 files changed

+3166
-477
lines changed

7 files changed

+3166
-477
lines changed

community-package.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "openrockets-community",
3+
"version": "1.0.0",
4+
"description": "OpenRockets Community Platform - Real-time community features with chat, posts, and collaboration",
5+
"main": "community-server.js",
6+
"scripts": {
7+
"start": "node community-server.js",
8+
"dev": "nodemon community-server.js",
9+
"install-deps": "npm install",
10+
"setup": "npm install && node setup-database.js"
11+
},
12+
"keywords": [
13+
"community",
14+
"real-time",
15+
"chat",
16+
"education",
17+
"programming",
18+
"collaboration",
19+
"websockets",
20+
"social-learning"
21+
],
22+
"author": "OpenRockets Team",
23+
"license": "MIT",
24+
"dependencies": {
25+
"express": "^4.18.2",
26+
"socket.io": "^4.7.4",
27+
"cors": "^2.8.5",
28+
"dotenv": "^16.3.1",
29+
"jsonwebtoken": "^9.0.2",
30+
"multer": "^1.4.5-lts.1",
31+
"uuid": "^9.0.1",
32+
"bcryptjs": "^2.4.3",
33+
"express-rate-limit": "^7.1.5",
34+
"helmet": "^7.1.0",
35+
"compression": "^1.7.4",
36+
"morgan": "^1.10.0"
37+
},
38+
"devDependencies": {
39+
"nodemon": "^3.0.2",
40+
"concurrently": "^8.2.2"
41+
},
42+
"engines": {
43+
"node": ">=18.0.0",
44+
"npm": ">=9.0.0"
45+
},
46+
"repository": {
47+
"type": "git",
48+
"url": "https://github.com/openrockets/openrockets.me.git"
49+
},
50+
"bugs": {
51+
"url": "https://github.com/openrockets/openrockets.me/issues"
52+
},
53+
"homepage": "https://openrockets.me"
54+
}

0 commit comments

Comments
 (0)