-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 813 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
{
"name": "codeclash",
"version": "1.0.0",
"description": "CodeClash - LeetCode Battles",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"client": "cd client && npm start",
"server": "cd server && npm run dev",
"dev": "concurrently \"npm run server\" \"npm run client\" --names \"SERVER,CLIENT\" --prefix name --prefix-colors \"yellow,cyan\"",
"install-all": "npm install && cd client && npm install && cd ../server && npm install"
},
"dependencies": {
"dotenv": "^17.2.0",
"pg": "^8.16.3",
"react-router-dom": "^7.7.0",
"sequelize": "^6.37.7",
"socket.io-client": "^4.8.1",
"socket.io": "^4.8.1"
},
"devDependencies": {
"concurrently": "^7.6.0"
}
}