-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.03 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@project-openubl/lib-ui",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"repository": "https://github.com/project-openubl/lib-ui.git",
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"license": "Apache-2.0",
"scripts": {
"commit": "npx git-cz",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint --ext .tsx,.js ./src/",
"format": "prettier --check --write ./src/**/*.{tsx,ts,scss}",
"type-check": "yarn tsc --noEmit",
"ci": "yarn type-check && yarn lint && yarn test",
"clean": "rimraf dist && rimraf storybook-static",
"build": "rimraf dist && rollup -c",
"storybook": "start-storybook --docs -p 6006",
"storybook:export": "rimraf storybook-static && build-storybook --docs"
},
"peerDependencies": {
"@patternfly/react-core": "^4.221.3",
"@patternfly/react-tokens": "^4.73.3",
"axios": "^0.21.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@patternfly/react-core": "^4.221.3",
"@patternfly/react-table": "^4.90.3",
"@patternfly/react-tokens": "^4.73.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-docs": "^6.2.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.2.8",
"@storybook/react": "^6.2.8",
"@storybook/theming": "^6.2.8",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^26.0.22",
"@types/react": "^16.9.44",
"@types/rollup-plugin-postcss": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"axios": "^0.21.2",
"axios-mock-adapter": "^1.20.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"levenary": "^1.1.1",
"node-sass": "^7.0.1",
"postcss": "^8.2.12",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^11.0.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.5",
"tslib": "^2.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"react-query": "^3.26.0",
"yup": "^0.32.9"
}
}