-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.97 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
{
"name": "@gen3/ui-component",
"version": "0.11.4",
"description": "Basic UI component for gen3",
"main": "index.js",
"scripts": {
"test": "jest",
"storybook": "storybook dev -p 9002 -c .storybook",
"prepare": "rm -rf dist && npm run eslint && npm run stylelint && npx gulp",
"prepare-dev": "rm -rf dist && npm run eslint && npm run stylelint && npx gulp --dev",
"eslint": "eslint --ext js --ext jsx --ignore-pattern '**/setupTests.js' --ignore-pattern 'dist/' --fix src",
"stylelint": "stylelint 'src/**/*.less' 'src/**/*.css' 'stories/*.css' --config .stylelintrc.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uc-cdis/gen3-ui-component.git"
},
"keywords": [
"gen3"
],
"author": "cdis.uchicago.edu",
"license": "ISC",
"bugs": {
"url": "https://github.com/uc-cdis/gen3-ui-component/issues"
},
"homepage": "https://github.com/uc-cdis/gen3-ui-component#readme",
"dependencies": {
"antd": "^4.24.12",
"babel-loader": "^9.1.3",
"postcss-svgo": "^5.1.0",
"prop-types": "^15.8.1",
"rc-slider": "^8.7.1",
"rc-tooltip": "^3.7.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^4.3.1",
"react-select-async-paginate": "^0.7.3",
"stylelint": "^15.10.0",
"recharts": "^2.7.3"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@storybook/addon-actions": "^7.0.24",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "^7.0.24",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-csso": "^3.0.1",
"gulp-if": "^2.0.2",
"gulp-postcss": "^9.0.1",
"gulp-sourcemaps": "^2.6.5",
"install": "^0.13.0",
"jest": "^26.6.3",
"minimist": "^1.2.8",
"postcss": "^8.4.24",
"postcss-assets": "^6.0.0",
"postcss-cli": "^8.3.1",
"postcss-less": "^6.0.0",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^7.8.3",
"react-test-renderer": "^17.0.2",
"storybook": "^7.0.24"
},
"overrides": {
"strip-ansi": "6.0.1",
"glob-parent": "^5.1.2",
"semver": "^7.5.2",
"@storybook/react": {
"trim": "0.0.3"
},
"default-browser-id": {
"meow": "6.1.0"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFilesAfterEnv": [
"./src/setupTests.js"
]
}
}