-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "ospc",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@nest",
"**/@nest/**",
"**/next",
"**/next/**",
"**/react",
"**/react/**",
"**/@oscp",
"**/@oscp/**"
]
},
"scripts": {
"run:prod:server": "yarn --cwd ./packages/server start:prod",
"run:prod:client": "yarn --cwd ./packages/client start",
"run:server:dev": "yarn --cwd ./packages/server start:dev",
"run:server": "yarn --cwd ./packages/server start",
"run:client:dev": "yarn --cwd ./packages/client dev",
"run:client": "yarn --cwd ./packages/client start",
"run:dev": " concurrently \"yarn run:server:dev\" \" yarn run:client:dev\"",
"build:common": "yarn --cwd ./packages/common build",
"build:server": "yarn run build:common && yarn --cwd ./packages/server run build",
"build:client": "yarn run build:common && yarn --cwd ./packages/client run build",
"build": "yarn build:server"
},
"dependencies": {
"axios": "^0.21.1",
"graphql": "^15.5.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"concurrently": "^6.0.2",
"lerna": "^3.22.1",
"typescript": "^4.1.5"
}
}