forked from telekom/scale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "telekom",
"version": "0.0.1",
"license": "MPL-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "./scripts/clean.sh",
"build": "./scripts/build.sh",
"build:storybook:staging": "./scripts/storybook-staging-build.sh",
"build:components": "yarn workspace @telekom/scale-components build",
"watch:components": "yarn workspace @telekom/scale-components start",
"bootstrap": "lerna bootstrap",
"postbootstrap": "lerna run generate",
"test": "lerna run test --scope @telekom/scale-components",
"new-version": "lerna version --conventional-commits --no-push",
"force-version": "lerna version --conventional-commits --force-publish --no-push"
},
"devDependencies": {
"lerna": "^3.20.2",
"husky": "^3.0.9",
"rimraf": "2.6.3"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-push": "cd packages/components && yarn lint"
}
}
}