-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1016 Bytes
/
package.json
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
{
"name": "collaborative-ide",
"version": "1.0.0",
"description": "A collaborative IDE with React frontend and Nest.js backend",
"scripts": {
"server": "npm run start:dev --prefix Backend",
"client": "npm run dev --prefix Frontend",
"start": "concurrently \"npm run server\" \"npm run client\"",
"start:dev": "concurrently \"npm run server --watch\" \"npm run client --watch\"",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"devDependencies": {
"concurrently": "^6.5.1"
},
"dependencies": {
"@emotion/styled": "^11.13.5",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-socket.io": "^10.4.6",
"@nestjs/websockets": "^10.4.6",
"@prisma/client": "^5.18.0",
"@xterm/xterm": "^5.5.0",
"bcryptjs": "^2.4.3",
"diff-match-patch": "^1.0.5",
"dockerode": "^4.0.2",
"passport-jwt": "^4.0.1",
"react-router-dom": "^6.26.1",
"websocket-stream": "^5.5.2"
}
}