-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 762 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "resonance",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"build:api": "yarn workspace @resonance/api build",
"build:docs": "yarn workspace @resonance/docs build",
"build:website": "yarn workspace @resonance/website build",
"dev": "yarn workspaces run dev",
"dev:api": "yarn workspace @resonance/api dev",
"dev:docs": "yarn workspace @resonance/docs dev",
"dev:website": "yarn workspace @resonance/website dev",
"lint": "yarn workspaces run lint",
"lint:api": "yarn workspace @resonance/api lint",
"lint:docs": "yarn workspace @resonance/docs lint",
"lint:website": "yarn workspace @resonance/website lint"
}
}