forked from publicodes/publicodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 828 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
{
"name": "publicodes-monorepo",
"private": true,
"workspaces": [
"packages/api",
"packages/core",
"packages/react-ui",
"website"
],
"scripts": {
"test": "run prepack && yarn workspaces foreach run test",
"prepack": "yarn workspaces foreach --topological-dev -i run prepack",
"test:type": "run prepack && yarn workspaces foreach -pi run test:type",
"lint": "run prettier --check \"**/*.{js,jsx,ts,tsx,yaml,yml}\"",
"lint:fix": "run lint --write",
"build": "yarn workspaces foreach --topological-dev -i --exclude website run build",
"start": "yarn workspaces foreach --exclude \"@publicodes/api\" -pi run start",
"clean": "yarn workspaces foreach run clean"
},
"devDependencies": {
"prettier": "^2.5.1",
"yaml": "^2.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}