-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 938 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 938 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
32
33
34
35
{
"name": "Simple-Blog-app",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/CodeMonitor-lab/Simple-Blog-app.git",
"author": "CodeMonitor-lab <niteshcse3333@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"web",
"admin",
"server"
],
"scripts": {
"dev:web": "yarn workspace web dev ",
"dev:admin": "yarn workspace admin dev",
"dev:server": "yarn workspace server dev",
"dev": "concurrently -n WebClient,AdminClient,Server-API -c magenta,cyan,green \"yarn dev:web\" \"yarn dev:admin\" \"yarn dev:server\""
},
"dependencies": {
"axios": "^1.12.2",
"concurrently": "^9.2.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-toastify": "^11.0.5"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"typescript": "^5.9.2"
},
"resolutions": {
"react-side-effect": "^2.1.2"
}
}