-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
26 lines (26 loc) · 1.07 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
{
"name": "rescript-relay-router-monorepo",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"packageManager": "yarn@1.22.19",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "yarn build:libs && yarn build:examples",
"build:libs": "yarn workspaces foreach -v --topological --include 'rescript-relay-router' --include '@rescript-relay-router/*' run build",
"build:examples": "yarn workspaces foreach -v --topological --include '@rescript-relay-router-example/*' run build",
"preview": "yarn workspaces foreach -v -pi --include '@rescript-relay-router-example/*' run preview",
"start": "yarn workspaces foreach -v -pi --include '@rescript-relay-router-example/*' run start",
"dev": "yarn workspaces foreach -v -pi --include '@rescript-relay-router-example/*' run dev",
"test": "yarn workspaces foreach -v run test",
"test:watch": "yarn workspaces foreach -v -pi run test:watch",
"release": "yarn build && yarn changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.23.1"
}
}