forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.02 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
121
122
123
124
125
126
127
128
{
"name": "react-data-grid",
"version": "7.0.0-beta.28",
"license": "MIT",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"react",
"data grid"
],
"repository": "github:adazzle/react-data-grid",
"bugs": "https://github.com/adazzle/react-data-grid/issues",
"type": "module",
"exports": {
"./lib/styles.css": "./lib/styles.css",
".": {
"types": "./lib/index.d.ts",
"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": [
"**/*.css"
],
"scripts": {
"start": "webpack serve --mode=development",
"build:website": "webpack --mode=production",
"build": "rollup --config --no-stdin",
"build:types": "tsc -p tsconfig.lib.json && api-extractor run --local --verbose",
"test": "jest",
"test:watch": "jest --watch",
"format": "rome format . --write",
"check": "rome check .",
"rome:ci": "rome ci .",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 --cache --color src test website",
"eslint:fix": "npm run eslint -- --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"typecheck": "tsc",
"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.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@faker-js/faker": "^7.1.0",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@linaria/babel-preset": "4.3.3",
"@linaria/core": "4.2.5",
"@linaria/logger": "4.0.0",
"@linaria/rollup": "4.3.2",
"@linaria/shaker": "4.2.7",
"@linaria/tags": "4.3.0",
"@linaria/utils": "4.3.0",
"@linaria/vite": "4.2.5",
"@linaria/webpack5-loader": "4.1.11",
"@microsoft/api-extractor": "^7.23.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.184",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^9.0.0",
"babel-plugin-optimize-clsx": "^2.6.2",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-testing-library": "^5.9.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.13",
"postcss-loader": "^7.0.0",
"postcss-nested": "^6.0.0",
"prettier": "2.8.7",
"react": "^18.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.1.0",
"react-refresh": "^0.14.0",
"react-router-dom": "~6.3.0",
"rollup": "^3.2.2",
"rollup-plugin-postcss": "^4.0.2",
"rome": "^12.0.0",
"style-loader": "^3.3.1",
"typescript": "~5.0.2",
"webpack": "^5.72.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.8.1",
"xlsx": "^0.18.5"
},
"peerDependencies": {
"react": "^18.0",
"react-dom": "^18.0"
}
}