forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.69 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
{
"name": "@ziad-saab/react-data-grid",
"version": "7.2.1-beta.7",
"license": "MIT",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"react",
"data grid"
],
"repository": "github:ziad-saab/react-data-grid",
"bugs": "https://github.com/ziad-saab/react-data-grid/issues",
"type": "module",
"exports": {
".": {
"module": "./lib/bundle.js",
"require": "./lib/bundle.cjs",
"default": "./lib/bundle.js"
}
},
"browser": "./lib/bundle.js",
"main": "./lib/bundle.cjs",
"module": "./lib/bundle.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup --config --no-stdin",
"build:types": "tsc && api-extractor run --local --verbose",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 -f codeframe --cache --color src test website",
"eslint:fix": "npm run eslint -- --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"typecheck": "tsc -p tsconfig.all.json",
"prepublishOnly": "npm install && npm run build && npm run build:types",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"clsx": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@linaria/babel-preset": "^3.0.0-beta.12",
"@linaria/core": "^3.0.0-beta.4",
"@linaria/rollup": "^3.0.0-beta.12",
"@linaria/shaker": "^3.0.0-beta.12",
"@linaria/webpack5-loader": "^3.0.0-beta.12",
"@microsoft/api-extractor": "^7.16.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/faker": "^5.5.6",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-optimize-clsx": "^2.6.2",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.10.0",
"faker": "^5.5.3",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.5",
"jspdf": "^2.3.1",
"jspdf-autotable": "^3.5.14",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.2.2",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-nested": "^5.0.6",
"prettier": "2.4.1",
"react": "^17.0.2",
"react-contextmenu": "^2.14.0",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-refresh": "^0.10.0",
"react-router-dom": "^5.3.0",
"rollup": "^2.57.0",
"rollup-plugin-postcss": "^4.0.0",
"style-loader": "^3.2.1",
"typescript": "~4.4.2",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0",
"xlsx": "^0.17.0"
},
"peerDependencies": {
"react": "^16.14 || ^17.0",
"react-dom": "^16.14 || ^17.0"
}
}