forked from mi6/ic-ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean -y",
"test": "lerna run test --stream",
"test:coverage": "lerna run test:coverage --stream",
"test-a11y": "npm run build && lerna run test-a11y",
"test-a11y:ci": "lerna run test-a11y --stream",
"test-e2e": "lerna run test-e2e --stream",
"start": "lerna run start --scope=@ukic/web-components --stream",
"build": "lerna run build --scope=@ukic/web-components --scope=@ukic/fonts --scope=@ukic/docs --stream && lerna run build --scope=@ukic/react --stream",
"release-check": "lerna version --no-push --no-git-tag-version",
"storybook": "lerna run storybook --stream --parallel",
"build-storybook:web-components": "lerna run build-storybook --scope @ukic/web-components",
"build-storybook:react": "lerna run build-storybook --scope @ukic/react",
"test:ci": "npm run test",
"test:coverage-ci": "npm run test:coverage",
"test-visual": "npm run build && npm run build-storybook:web-components && lerna run test-visual --stream",
"test-visual:ci": "npm run build && npm run build-storybook:web-components && lerna run test-visual:ci --stream",
"test-visual:update": "lerna run test-visual:update --stream",
"test-visual:update-ci": "npm run build && lerna run test-visual:update --stream",
"audit": "audit-ci -m --config audit-ci.json && lerna run audit",
"prepare": "husky install",
"prettier": "lerna run prettier",
"prettier:fix": "lerna run prettier:fix",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"static-analysis": "npm run lint && npm run prettier && npm run audit"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/config-lerna-scopes": "^17.2.1",
"@stencil/eslint-plugin": "^0.4.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"audit-ci": "^6.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"lerna": "^6.0.3",
"lerna-audit": "^1.3.3",
"ncp": "^2.0.0",
"prettier": "2.5.0",
"remark-cli": "^10.0.1",
"remark-lint": "^9.1.0",
"remark-preset-lint-recommended": "^6.1.1",
"rimraf": "^3.0.2",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0"
},
"engines": {
"node": ">=16.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}