forked from jbetancur/react-data-table-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.99 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
115
116
117
118
119
120
{
"name": "react-data-table-component",
"version": "6.11.7",
"description": "A declarative react based data table",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"data",
"table",
"tables",
"react-table",
"react-data-table",
"react-data-table-component"
],
"repository": "https://github.com/jbetancur/react-data-table-component",
"author": "jbetancur",
"license": "Apache-2.0",
"scripts": {
"prepublishOnly": "npm run build",
"build:dev": "rollup -c rollup/rollup.config.dev.js -m",
"build:umd": "rollup -c rollup/rollup.config.umd.js",
"build:cjs": "rollup -c rollup/rollup.config.cjs.js",
"build:es": "rollup -c rollup/rollup.config.es.js",
"build": "yarn lint && rimraf dist/* && npm run build:dev && npm run build:cjs && npm run build:umd && npm run build:es",
"start": "npm run build:dev -- -w",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests --verbose --coverage",
"test:tdd": "cross-env BABEL_ENV=test jest --watch",
"test:tdd-coverage": "cross-env BABEL_ENV=test jest --watch --coverage",
"test:coverage": "cross-env BABEL_ENV=test jest --coverage",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/(index|*.stories).js",
"!src/DataTable/propTypes.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/demo"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.mock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/style.mock.js"
}
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@storybook/addon-a11y": "^6.0.27",
"@storybook/addon-actions": "^6.0.27",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-links": "^6.0.27",
"@storybook/addon-storysource": "^6.0.27",
"@storybook/react": "^6.0.27",
"@testing-library/react": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.11.1",
"codecov": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^4.1.0",
"jest": "^25.5.3",
"jest-styled-components": "^7.0.2",
"lodash-es": "^4.17.15",
"memoize-one": "^5.1.1",
"moment": "^2.24.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^4.0.4",
"styled-components": "^5.0.1",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^3.9.7"
},
"dependencies": {
"deepmerge": "^4.2.2",
"lodash.orderby": "^4.6.0",
"shortid": "^2.2.16"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"styled-components": "^4.0.0 || ^5.0.0"
}
}