-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 726 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
{
"name": "react-data-frame",
"version": "0.1.7",
"private": true,
"author": "Oleg Krasnikov",
"readme": "README.md",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"start": "concurrently \"yarn package:watch\" \"yarn storybook:start\"",
"package:watch": "yarn workspace react-data-frame watch",
"package:clean": "yarn workspace react-data-frame clean",
"package:build": "yarn workspace react-data-frame build",
"package:publish": "yarn workspace react-data-frame publish",
"storybook:start": "yarn workspace storybook start",
"storybook:build": "yarn workspace storybook build"
},
"devDependencies": {
"concurrently": "^7.3.0"
}
}