-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@storybook/source-loader": "^6.4.9",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^29.7.0",
"chromatic": "^6.2.3",
"css-loader": "^6.11.0",
"doctoc": "^2.1.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^6.6.1",
"lint-staged": "^13.1.2",
"patch-package": "^6.5.1",
"prettier": "^2.8.8",
"regenerator-runtime": "^0.13.11",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"shx": "^0.3.3",
"style-loader": "^4.0.0",
"typescript": "^4.8.4"
},
"scripts": {
"compile": "pnpm m run compile",
"postinstall": "pnpm run compile",
"test": "pnpm m run test",
"test:visual": "pnpm run --filter @hazelcast/ui test:visual",
"test:visual:approve": "pnpm run --filter @hazelcast/ui test:visual:approve",
"lint": "pnpm m run lint",
"verify-all": "pnpm run lint && pnpm run test && pnpm run build-storybook && pnpm run test:visual",
"build-storybook": "pnpm m run build-storybook",
"publish-storybook": "pnpm run --filter @hazelcast/ui publish-storybook",
"start": "pnpm run --filter @hazelcast/ui storybook",
"prepack": "pnpm run compile",
"prepare": "husky install",
"publish-canary": "lerna publish --canary --preid next --dist-tag next --yes --no-verify-access --include-merged-tags",
"publish-release": "lerna publish from-package --force-publish --yes"
},
"pnpm": {
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"xml2js@<0.5.0": ">=0.5.0",
"browserify-sign@>=2.6.0 <=4.2.1": ">=4.2.2",
"postcss@<8.4.31": ">=8.4.31",
"react-devtools-core@<4.28.4": ">=4.28.4",
"glob-parent@<5.1.2": ">=5.1.2",
"word-wrap@<1.2.4": ">=1.2.4",
"trim-newlines@<3.0.1": ">=3.0.1",
"tough-cookie@<4.1.3": ">=4.1.3",
"@babel/traverse@<7.23.2": ">=7.23.2",
"follow-redirects@<1.15.4": ">=1.15.4",
"qs@>=6.9.0 <6.9.7": ">=6.9.7",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
"axios@>=1.0.0 <1.6.0": ">=1.6.0",
"ip@=2.0.0": ">=2.0.1"
}
}
}