-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 887 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
31
{
"name": "algonix",
"version": "1.0.0",
"description": "Gamified coding skill development platform",
"main": "server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon backend/server.js",
"client": "cd frontend && npm start",
"build": "cd frontend && npm run build",
"install-all": "npm install && cd frontend && npm install",
"docker-build": "docker build -t algonix .",
"docker-run": "docker run -p 3000:3000 -p 5000:5000 algonix"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^7.5.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"multer": "^1.4.5",
"axios": "^1.5.0",
"puppeteer": "^21.1.1",
"node-cron": "^3.0.2"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.0"
}
}