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.58 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": "react-data-grid",
"version": "7.0.0-beta.42",
"license": "MIT",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"react",
"data grid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adazzle/react-data-grid.git"
},
"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": "vite serve --clearScreen false",
"preview": "vite preview",
"build:website": "vite build",
"build": "rollup --config --no-stdin",
"build:types": "tsc -p tsconfig.lib.json && api-extractor run --local --verbose",
"test": "vitest run",
"test:watch": "vitest watch",
"format": "biome format . --write",
"check": "biome check . --error-on-warnings",
"biome:ci": "biome ci . --error-on-warnings",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 --cache --color src test website vite.config.ts",
"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": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.21.5",
"@biomejs/biome": "1.5.3",
"@faker-js/faker": "^8.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@linaria/core": "^6.0.0",
"@microsoft/api-extractor": "^7.23.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.10.3",
"@types/react": "^18.2.35",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.0",
"@wyw-in-js/rollup": "^0.3.0",
"@wyw-in-js/vite": "^0.3.0",
"babel-plugin-optimize-clsx": "^2.6.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-testing-library": "^6.2.0",
"jsdom": "^24.0.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
"lodash-es": "^4.17.21",
"postcss": "^8.4.25",
"prettier": "3.2.5",
"react": "^18.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.1.0",
"react-router-dom": "^6.11.1",
"rollup": "^4.0.2",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "~5.3.2",
"vite": "^5.0.11",
"vitest": "^1.2.0"
},
"peerDependencies": {
"react": "^18.0",
"react-dom": "^18.0"
}
}