-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 751 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 751 Bytes
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
{
"name": "respite",
"version": "0.0.0",
"description": "All the state management",
"main": "index.js",
"repository": "git@github.com:jackmellis/respite.git",
"author": "Jack Ellis",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "yarn build",
"lint": "lerna run lint",
"lint:scope": "lerna exec yarn lint --scope $1",
"test": "lerna run test",
"test:scope": "lerna exec \"yarn test --watch\" --scope $1",
"build": "lerna run build",
"build:scope": "lerna exec yarn build --scope $1",
"ci": "yarn && yarn lint && yarn test",
"start": "lerna exec --scope @respite/demos \"yarn storybook\""
},
"devDependencies": {
"lerna": "^3.22.1"
},
"workspaces": [
"packages/*"
]
}