-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (46 loc) · 1.32 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
44
45
46
47
{
"name": "codebattlearena",
"version": "1.0.0",
"description": "The base package for this project",
"main": "server/index.js",
"type": "module",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "echo \"No tests specified yet\" && exit 0",
"seed": "node server/seedDatabase.js",
"lint": "eslint server/ client/ --ext .js --max-warnings 50",
"build": "echo \"Build step - verifying files exist\" && ls server/",
"health": "curl -f http://localhost:8080/health || echo 'Health check endpoint needed'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikashgupta16/CodeBattle-Arena.git"
},
"keywords": [
"express",
"ws",
"dotenv"
],
"author": "Rouvik Maji Archisman Pal",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vikashgupta16/CodeBattle-Arena/issues"
},
"homepage": "https://github.com/vikashgupta16/CodeBattle-Arena#readme",
"dependencies": {
"@clerk/express": "^1.3.59",
"@google/generative-ai": "^0.2.1",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"mongoose": "^8.13.1",
"node-fetch": "^3.3.2",
"socket.io": "^4.8.1"
},
"devDependencies": {
"nodemon": "^3.0.0",
"eslint": "^8.57.0"
}
}