forked from Comcast/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.68 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.68 KB
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
{
"name": "react-data-grid",
"version": "7.0.0-canary.14",
"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"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"sideEffects": [
"*.css",
"*.less"
],
"scripts": {
"start": "start-storybook --quiet -p 6006",
"build": "tsc",
"postbuild": "node --experimental-modules tools/buildStylesheets.mjs",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint --ext mjs,ts,tsx --max-warnings 0 -f codeframe --cache --color src stories jest tools",
"eslint:fix": "npm run eslint -- --fix",
"typecheck": "tsc -p tsconfig.all.json",
"build-storybook": "build-storybook --quiet",
"prepublishOnly": "npm install && npm run build",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"classnames": "^2.2.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"@storybook/react": "^5.3.18",
"@testing-library/react": "^10.0.2",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/faker": "^4.1.11",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-select": "^3.0.11",
"@types/react-virtualized": "^9.21.8",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"clean-css": "^4.2.3",
"core-js": "^3.6.4",
"css-loader": "^3.5.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-sonarjs": "^0.5.0",
"faker": "^4.1.0",
"jest": "^25.3.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"react": "^16.13.1",
"react-contextmenu": "^2.13.0",
"react-dom": "^16.13.1",
"react-select": "^3.1.0",
"react-virtualized": "^9.21.2",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "~3.8.3"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
}
}