-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.06 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
{
"name": "@idbs/idbs-react-card",
"version": "1.0.7",
"description": "A shared IDBS react 'Card' component",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"start": "npm run storybook",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"build": "webpack --mode production",
"storybook": "start-storybook -p 6006",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IDBusinessSolutions/idbs-react-card.git"
},
"author": "mwalklandIDBS",
"homepage": "https://github.com/IDBusinessSolutions/idbs-react-card#readme",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@storybook/addon-a11y": "^6.4.9",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-options": "^5.3.21",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^10.0.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.2.3",
"babel-plugin-react-docgen": "^4.1.0",
"css-loader": "^3.5.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"prop-types": "^15.8.0"
},
"peerDependencies": {
"react": ">16.13.1",
"react-dom": ">16.13.1"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"transformIgnorePatterns": [
"node_modules/(?!(@idbs|@polymer|@webcomponents)/)"
],
"setupFilesAfterEnv": [
"./src/setupTests.js"
],
"coverageReporters": [
"json",
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"src/**/*.(js|jsx)",
"!src/index.js",
"!src/setupTests.js"
]
},
"publishConfig": {
"registry": "https://artifactory.idbs-dev.com/artifactory/api/npm/npm-local/"
}
}