forked from uc-cdis/gen3-ui-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.74 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.74 KB
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
{
"name": "@gen3/ui-component",
"version": "0.11.0",
"description": "Basic UI component for gen3",
"main": "index.js",
"scripts": {
"test": "jest",
"storybook": "start-storybook -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": {
"@storybook/addon-actions": "^6.0.0",
"@storybook/react": "^6.0.0",
"antd": "^4.16.7",
"babel-loader": "^8.0.5",
"postcss-svgo": "^5.0.0",
"prop-types": "^15.7.2",
"rc-slider": "^8.6.6",
"rc-tooltip": "^3.7.3",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^4.3.1",
"react-select": "^3.1.0",
"react-select-async-paginate": "^0.4.0",
"recharts": "^2.0.0",
"stylelint": "^13.11.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.10",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.0.1",
"gulp-csso": "^3.0.1",
"gulp-if": "^2.0.2",
"gulp-postcss": "^9.0.0",
"gulp-sourcemaps": "^2.6.5",
"install": "^0.13.0",
"jest": "^26.0.0",
"minimist": "^1.2.0",
"postcss": "^8.0.0",
"postcss-assets": "^6.0.0",
"postcss-cli": "^8.0.0",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^7.0.0",
"react-test-renderer": "^16.8.4"
},
"overrides": {
"strip-ansi": "6.0.1",
"@storybook/react": {
"trim": "0.0.3"
}
},
"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"
]
}
}