forked from jbetancur/react-data-table-component
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.8 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
{
"name": "react-data-table-component-with-filter",
"version": "7.6.2",
"description": "A simple to use 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/anothercodeartist/react-data-table-component",
"author": "AnotherCodeArtist",
"license": "Apache-2.0",
"prepublish": "tsc",
"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": "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": "jest --passWithNoTests --verbose --coverage",
"test:tdd": "jest --watch",
"test:tdd-coverage": "jest --watch --coverage",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx && eslint . --ext .js --config eslintrc-js.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@faker-js/faker": "^8.3.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/addon-a11y": "^7.6.8",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-storysource": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-webpack5": "^7.6.8",
"@storybook/theming": "^7.6.8",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/lodash.orderby": "^4.6.9",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"axios": "^1.6.5",
"codecov": "^3.8.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"jest-watch-typeahead": "^2.2.2",
"lodash-es": "^4.17.21",
"memoize-one": "^6.0.0",
"moment": "^2.30.1",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.0",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"remark-gfm": "^3.0.0",
"rimraf": "^5.0.5",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.5.2",
"storybook": "^7.6.8",
"styled-components": "^6.1.8",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"deepmerge": "^4.3.1"
},
"peerDependencies": {
"react": ">= 16.8.3",
"styled-components": ">= 5.0.0"
},
"peerDependenciesMeta": {
"styled-components": {
"optional": false
}
},
"packageManager": "[email protected]"
}