-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
42
43
{
"name": "alpha-chats",
"version": "2.0.0",
"description": "Elite Developer Communication Terminal - A real-time chat application built specifically for developers",
"main": "backend/index.js",
"private": true,
"keywords": [
"chat",
"real-time",
"developers",
"socket.io",
"react",
"nodejs",
"terminal",
"code-sharing"
],
"author": "Vikash (Team Lead)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/your-username/alpha-chats.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"test": "cd tests && npm test",
"test:backend": "cd backend/tests && npm test",
"test:all": "npm run test:backend && npm run test"
},
"dependencies": {
"axios": "^1.9.0",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"concurrently": "^8.2.0"
}
}