-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 857 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
{
"name": "base",
"author": "David Bishop",
"description": "A demo project that showcases various ways to create a chat feature or chat app with a Node.js application.",
"repository": {
"type": "git",
"url": "git+https://github.com/dBish6/Node_Chat_App_Demos.git"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"Node+Socket.io+React/*"
],
"scripts": {
"dev:socket.io-front": "npm run dev --workspace front-end",
"dev:socket.io-back": "npm run dev --workspace back-end",
"build:socket.io-front": "npm run build --workspace front-end",
"build:socket.io-back": "npm run build --workspace back-end",
"serve:socket.io-back": "npm run serve --workspace back-end",
"deploy:back": "npm run deploy --workspace back-end",
"clean": "npm run clean --workspace front-end --workspace back-end"
}
}