generated from emunhoz/monorepo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.24 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "spotifood",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:emunhoz/spotifood.git",
"author": "emunhoz <[email protected]>",
"private": true,
"workspaces": [
"packages/**/*"
],
"license": "MIT",
"scripts": {
"commit": "git-cz",
"publish:ci": "lerna publish from-package --yes --no-verify-registry --no-verify-access && git add -u .",
"version:ci": "lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish'",
"watch:design-tokens": "yarn workspace @monorepo/design-tokens start",
"watch:tokens": "yarn workspace @monorepo/design-tokens start",
"watch:components": "yarn workspace @monorepo/ui-components start",
"test:components": "yarn workspace @monorepo/ui-components test",
"test:update": "yarn workspace @monorepo/ui-components test:update && yarn workspace @monorepo/spotifood test:update",
"test:app": "yarn workspace @monorepo/spotifood test",
"postinstall": "yarn workspace @monorepo/design-tokens libbuild && yarn workspace @monorepo/ui-components libbuild",
"start": "yarn workspace @monorepo/spotifood start",
"build-app": "yarn workspace @monorepo/spotifood build",
"storybook": "yarn workspace @monorepo/ui-components storybook",
"build-storybook": "yarn workspace @monorepo/ui-components build-storybook",
"lint": "yarn workspace @monorepo/ui-components lint && yarn workspace @monorepo/spotifood lint",
"lint:css": "yarn workspace @monorepo/ui-components lint:css && yarn workspace @monorepo/spotifood lint:css",
"test:ci": "yarn workspace @monorepo/ui-components test:coverage && yarn workspace @monorepo/spotifood test:coverage"
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@commons/eslint-config": "*",
"@commons/stylelint-config": "*",
"commitizen": "^4.2.2",
"commitlint-config-monorepo": "^2.0.2",
"cz-conventional-changelog": "^3.3.0",
"git-commit-msg": "^0.3.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"typescript": "^4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}