forked from hazelcast/hive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chromatic": "^5.2.0",
"css-loader": "^4.3.0",
"doctoc": "^1.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.2",
"lerna": "^3.22.1",
"link-parent-bin": "^1.0.2",
"lint-staged": "^10.4.0",
"patch-package": "^6.2.2",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"shx": "^0.3.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"scripts": {
"link-parent-bin": "link-parent-bin",
"patch-package": "patch-package",
"compile": "lerna run compile",
"postinstall": "npm run patch-package && lerna bootstrap --hoist && npm run link-parent-bin && npm run compile",
"test": "lerna run --parallel test",
"test:visual": "lerna run --parallel test:visual",
"lint": "lerna run --parallel lint",
"verify-all": "npm run lint && npm run test && npm run build-storybook && npm run test:visual",
"build-storybook": "lerna run --parallel build-storybook",
"publish-storybook": "lerna run --scope @hazelcast/ui publish-storybook",
"start": "lerna run --scope @hazelcast/ui storybook",
"prepack": "npm run compile",
"publish-canary": "lerna publish --canary --preid next --dist-tag next --yes --no-verify-access --include-merged-tags"
}
}