forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.22 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
{
"name": "react-data-grid",
"version": "7.0.0-canary.33",
"license": "MIT",
"description": "Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like",
"keywords": [
"react",
"react-data-grid",
"data-grid"
],
"repository": "github:adazzle/react-data-grid",
"bugs": {
"url": "https://github.com/adazzle/react-data-grid/issues"
},
"type": "module",
"exports": {
".": {
"module": "./lib/bundle.js",
"require": "./lib/bundle.cjs",
"default": "./lib/bundle.js"
},
"./dist/": "./dist/"
},
"browser": "./lib/bundle.js",
"main": "./lib/bundle.cjs",
"module": "./lib/bundle.js",
"types": "./lib/index.d.ts",
"files": [
"dist",
"lib"
],
"sideEffects": [
"*.css",
"*.less"
],
"scripts": {
"start": "start-storybook --quiet --no-dll -p 6006",
"build": "rollup --config --no-stdin",
"postbuild": "node --experimental-modules tools/buildStylesheets.js",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 -f codeframe --cache --color src stories test tools",
"eslint:fix": "npm run eslint -- --fix",
"typecheck": "tsc -p tsconfig.all.json",
"build-storybook": "build-storybook --quiet --no-dll",
"prepublishOnly": "npm install && npm run build && tsc",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"clsx": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@juggle/resize-observer": "^3.2.0",
"@popperjs/core": "^2.6.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-select": "^3.0.28",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.2.2",
"babel-plugin-optimize-clsx": "^2.6.1",
"clean-css": "^4.2.3",
"core-js": "^3.8.1",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.5.0",
"faker": "^5.1.0",
"jest": "^26.6.3",
"less": "^3.13.0",
"less-loader": "^7.1.0",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.3",
"react": "^17.0.1",
"react-contextmenu": "^2.14.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^17.0.1",
"react-popper": "^2.2.4",
"react-select": "^3.1.1",
"react-sortable-hoc": "^1.11.0",
"rollup": "^2.35.1",
"typescript": "~4.1.3"
},
"peerDependencies": {
"react": "^16.14 || ^17.0",
"react-dom": "^16.14 || ^17.0"
}
}