-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
114 lines (114 loc) · 3.45 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ebs-design",
"version": "0.0.1-beta.135",
"description": "EBS Design System React UI elements.",
"author": "EBS Integrator <[email protected]> (https://ebs-integrator.com/)",
"keywords": [
"react",
"react-ui",
"ebs-design",
"ebs-ui"
],
"license": "MIT",
"repository": "git+ssh://[email protected]/ebs-integrator/react-ebs-ui.git",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"yarn": ">=1.22.4 <2",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "rm -rf dist && rollup -c rollup.config.js",
"start": "rollup -c -w",
"prepare": "yarn run build && husky install",
"storybook": "start-storybook -p 9009",
"build:storybook": "build-storybook -o docs-build"
},
"dependencies": {
"classnames": "^2.3.2",
"dayjs": "^1.11.5",
"lint-staged": ">=10",
"rc-field-form": "^1.27.2",
"rc-input-number": "^7.3.9",
"rc-table": "^7.27.2",
"rc-upload": "^4.3.4",
"react-animate-height": "^3.0.4",
"react-datepicker": "^4.8.0",
"react-phone-input-2": "^2.15.1",
"react-popper-tooltip": "^4.4.2",
"react-use": "^17.4.0",
"sass": "^1.55.0",
"sass-rem": "^3.0.0"
},
"peerDependencies": {
"react": ">= 16.8",
"react-dom": ">= 16.8",
"sass": "1.x"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-controls": "^6.5.12",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.12",
"@storybook/theming": "^6.5.12",
"@svgr/rollup": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.6",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.3",
"customize-cra": "^1.0.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-scripts": "^5.0.1",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-bundle-scss": "^0.1.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy-glob": "^0.3.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-url": "^3.0.1",
"storybook-addon-themes": "^6.1.0",
"typescript": "<4.8",
"webpack": "^5.74.0"
},
"files": [
"dist"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,scss}": [
"npx prettier --write -c .prettierrc"
],
"src/**/*.{js,jsx,ts,tsx}": [
"npx eslint -c .eslintrc.js --fix --max-warnings=0"
]
}
}