-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
34 lines (34 loc) · 1.34 KB
/
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
{
"name": "root",
"private": true,
"description": "A monorepo of Vue and React packages for Cosmos SDK apps",
"author": "Tendermint, Inc <[email protected]>",
"homepage": "https://github.com/ignite/web",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"workspaces": ["packages/react-lib","packages/vue-lib","packages/react-template","packages/vue-template"],
"scripts": {
"purge": "lerna exec -- rm -rf node_modules",
"prebuild": "npm ci",
"build": "lerna run build --scope='{@ignt/vue-library,@ignt/react-library}' --include-dependencies",
"alpha": "lerna publish --force-publish --canary --preid alpha-$(git rev-parse HEAD) --dist-tag alpha --yes --no-verify-access",
"prepatch": "lerna version patch --yes -m 'chore(release): publish %s'",
"patch": "lerna publish from-git --yes --no-verify-access",
"preminor": "lerna version minor --yes -m 'chore(release): publish %s'",
"minor": "lerna publish from-git --yes --no-verify-access",
"premajor": "lerna version major --yes -m 'chore(release): publish %s'",
"major": "lerna publish from-git --yes --no-verify-access"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignite/web.git"
},
"devDependencies": {
"lerna": "^4.0.0"
}
}