-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.71 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.71 KB
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
36
37
38
39
{
"name": "root",
"private": true,
"description": "A monorepo of Vue and React packages for Cosmos SDK apps",
"author": "Tendermint, Inc <hello@ignite.com>",
"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/vue-lib",
"packages/vue-template"
],
"scripts": {
"purge": "shx rm -rf node_modules",
"prebuild": "pnpm i",
"build": "pnpm --filter '@ignt/vue-library' build",
"alpha": "lerna publish --force-publish --canary --preid alpha-$(git rev-parse HEAD) --dist-tag alpha --yes --no-verify-access",
"prepatchrel": "node patch.cjs && git add ./packages/vue-template/package.json && git commit -m 'chore(release): Bumped @ignt/vue-lib version in template' && lerna version patch --yes -m 'chore(release): publish %s'",
"patchrel": "lerna publish from-git --yes --no-verify-access",
"preminor": "node minor.cjs && git add ./packages/vue-template/package.json && git commit -m 'chore(release): Bumped @ignt/vue-lib version in template' && lerna version minor --yes -m 'chore(release): publish %s'",
"minor": "lerna publish from-git --yes --no-verify-access",
"premajor": "node major.cjs && git add ./packages/vue-template/package.json && git commit -m 'chore(release): Bumped @ignt/vue-lib version in template' && 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",
"semver": "^7.7.2",
"shx": "^0.4.0"
}
}