-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 854 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
31
32
{
"name": "auth",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"start": "node build/index.js",
"build": "yarn build-client && yarn build-server",
"build-client": "yarn workspace client build",
"build-server": "yarn workspace server build",
"build-client:watch": "yarn workspace client build:watch",
"build-server:watch": "yarn workspace server build:watch",
"dev": "concurrently \"yarn dev-client\" \"yarn dev-server\" ",
"dev-client": "yarn build-client:watch",
"dev-server": "nodemon --exec \"yarn build-server && node\" build/index.js"
},
"devDependencies": {
"nodemon": "^2.0.20",
"concurrently": "^7.6.0"
},
"nodemonConfig": {
"watch": [
"server/**/*.ts",
"public"
],
"ext": "ts,js"
}
}