forked from code-hike/codehike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 848 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
25
26
27
28
29
30
31
32
33
34
35
{
"private": true,
"workspaces": {
"packages": [
"packages/mdx",
"examples/*",
"playground",
"site"
]
},
"scripts": {
"build": "lerna run --stream build",
"build:lib": "lerna run --stream --scope @*/mdx build",
"watch": "lerna run --stream --scope @*/mdx watch",
"build:playground": "lerna run --stream --scope playground build",
"test": "lerna run --stream test",
"dev": "lerna run --stream --scope @*/mdx dev",
"release": "auto shipit",
"postinstall": "yarn build:lib"
},
"devDependencies": {
"auto": "^10.18.7",
"lerna": "^4.0.0",
"prettier": "^2.5.1"
},
"repository": "code-hike/codehike",
"author": "pomber <[email protected]>",
"auto": {
"plugins": [
"npm",
"released"
],
"onlyPublishWithReleaseLabel": true
}
}