-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 986 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
{
"name": "root",
"version": "1.1.1",
"repository": "[email protected]:lucas-labs/plots.git",
"private": false,
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^7.6.0",
"prettier": "^2.0.5"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"copy-readme": "cp README.md packages/plots/README.md",
"tgz": "npm pack --workspace=@lucas-labs/plots",
"serve": "concurrently \"npm run watch\" \"npm run example\" -n \"ts,sb\" -c \"blue.bold,magenta.bold\" -p \"[{name}]\"",
"watch": "npm run watch --workspaces --if-present",
"example": "npm run storybook --workspace=@lucas-labs/plots-examples",
"build:example": "npm run build-storybook --workspace=@lucas-labs/plots-examples",
"fmt": "prettier --write README.md CHANGELOG.md CONTRIBUTING.md package.json \"packages/**/*.{js,jsx,ts,tsx,md,mdx,json}\""
},
"prettier": {}
}