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.38 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.38",
"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"
}
},
"browser": "./lib/bundle.js",
"main": "./lib/bundle.cjs",
"module": "./lib/bundle.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"start": "start-storybook --quiet -p 6006",
"build": "rollup --config --no-stdin",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 -f codeframe --cache --color src stories test",
"eslint:fix": "npm run eslint -- --fix",
"typecheck": "tsc -p tsconfig.all.json",
"build-storybook": "build-storybook --quiet",
"prepublishOnly": "npm install && npm run build && tsc && api-extractor run --local --verbose",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"clsx": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@babel/runtime": "^7.12.13",
"@juggle/resize-observer": "^3.2.0",
"@linaria/babel-preset": "^3.0.0-beta.1",
"@linaria/core": "^3.0.0-beta.1",
"@linaria/rollup": "^3.0.0-beta.1",
"@linaria/shaker": "^3.0.0-beta.1",
"@linaria/webpack-loader": "^3.0.0-beta.1",
"@microsoft/api-extractor": "^7.13.1",
"@popperjs/core": "^2.7.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/react": "^6.1.18",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-select": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-loader": "^8.2.2",
"babel-plugin-optimize-clsx": "^2.6.1",
"core-js": "^3.8.3",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.6.0",
"faker": "^5.4.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.7",
"postcss": "^8.2.6",
"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.2.0",
"react-sortable-hoc": "^1.11.0",
"rollup": "^2.39.0",
"rollup-plugin-postcss": "^4.0.0",
"typescript": "~4.2.2"
},
"peerDependencies": {
"react": "^16.14 || ^17.0",
"react-dom": "^16.14 || ^17.0"
}
}