-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
49 lines (49 loc) · 1.68 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
{
"name": "@devexperts/platform",
"scripts": {
"commitlint": "commitlint",
"start": "lerna run --parallel watch",
"start:storybook": "cd packages/react-kit && yarn start",
"storybook:publish": "cd packages/react-kit && yarn storybook:publish",
"test": "yarn lerna run --parallel test",
"lerna:bootstrap": "yarn lerna -- bootstrap",
"lerna:update": "yarn lerna -- clean && yarn lerna -- bootstrap",
"lerna:prepare": "yarn lerna run prepare",
"lerna:publish": "yarn lerna -- publish --conventional-commits",
"build:kit": "cd packages/react-kit && yarn build",
"build:tools": "cd packages/tools && yarn build",
"build": "yarn build:tools && yarn build:kit",
"prettier": "prettier --list-different \"./packages/**/src/**/*.{ts,tsx,js}\"",
"prettier:fix": "prettier --write \"./packages/**/src/**/*.{ts,tsx}\"",
"publish:patch": "yarn lerna publish patch --force-publish=*",
"publish:minor": "yarn lerna publish minor --force-publish=*",
"publish:major": "yarn lerna publish major --force-publish=*"
},
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devexperts/dx-platform.git"
},
"bugs": {
"url": "https://github.com/devexperts/dx-platform/issues"
},
"author": "devexperts",
"license": "MPL-2.0",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"husky": "^3.0.5",
"lerna": "^3.20.2",
"npm-normalize-package-bin": "^1.0.1",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}