This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
generated from OpenSaasAU/monorepo-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.6 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
44
45
46
47
48
49
50
51
{
"name": "@opensaas-clubhouse/monorepo",
"version": "1.0.0",
"private": true,
"description": "An example setup of how to do a monorepo, used in our monorepo 'getting started' guide",
"repository": "https://github.com/OpenSaasAU/clubhouse",
"license": "MIT",
"author": "Josh Calder <[email protected]>",
"workspaces": [
"packages/*",
"services/*",
"apps/*",
"backend",
"website"
],
"scripts": {
"build": "preconstruct build",
"build:backend": "manypkg run backend build",
"clean": "manypkg exec rm -rf node_modules && manypkg exec rm -rf dist && manypkg exec rm -rf .turbo && manypkg exec rm -rf .next && manypkg exec rm -rf .keystone && rm -rf node_modules",
"dev:backend": "manypkg run backend dev",
"dev:frontend": "manypkg run frontend dev",
"postinstall": "preconstruct dev",
"lint": "yarn eslint .",
"release": "yarn build && changeset publish",
"start": "yarn start:$APP_NAME",
"start:backend": "cd backend && yarn start",
"start:frontend": "cd apps/user-portal && yarn start",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@changesets/cli": "2.19.0",
"@manypkg/cli": "0.19.1",
"@preconstruct/cli": "2.1.5",
"babel-jest": "^27.4.6",
"eslint": "7.32.0",
"jest": "^27.4.7",
"turbo": "^1.1.5"
},
"preconstruct": {
"packages": [
"packages/*",
"services/*"
]
},
"packageManager": "[email protected]"
}