-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.7 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
{
"name": "react-data-grid",
"version": "7.0.0-alpha.13",
"description": "Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like",
"author": "Adazzle",
"license": "MIT",
"main": "commonjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib",
"commonjs"
],
"sideEffects": false,
"repository": "adazzle/react-data-grid",
"homepage": "https://github.com/adazzle/react-data-grid",
"bugs": {
"url": "https://github.com/adazzle/react-data-grid/issues"
},
"keywords": [
"react",
"react-data-grid",
"data-grid",
"core"
],
"scripts": {
"build": "tsc && npm run-script build-commonjs",
"build-commonjs": "tsc --module commonjs --outdir commonjs --esModuleInterop"
},
"dependencies": {
"classnames": "^2.2.6",
"immutable": "^3.8.2",
"lodash.pick": "^4.4.0",
"react-fast-compare": "^3.2.0",
"react-icons": "^3.7.0",
"react-is": "^17.0.0",
"shallowequal": "^1.1.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.4.4",
"@testing-library/react": "^8.0.1",
"@types/classnames": "^2.2.7",
"@types/enzyme": "^3.9.3",
"@types/jest": "^26.0.0",
"@types/lodash.pick": "^4.4.6",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.3",
"@types/react-is": "^16.7.1",
"@types/shallowequal": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^1.8.0",
"@typescript-eslint/parser": "^1.8.0",
"babel-loader": "^8.0.6",
"clean-css": "^4.2.1",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-sonarjs": "^0.4.0",
"faker": "^4.1.0",
"immutability-helper": "^3.0.0",
"immutable": "^3.8.2",
"jest": "^26.0.0",
"lerna": "^3.14.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"markdown": "^0.5.0",
"node-dir": "^0.1.12",
"react": "^17.0.0",
"react-contextmenu": "^2.10.0",
"react-data-grid-addons": "6.1.0",
"react-dnd-test-backend": "^2.6.0",
"react-docgen": "^2.21.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.0.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"ts-jest": "^26.0.0",
"typescript": "^4.0.0",
"webpack": "^4.32.2",
"webpack-dev-server": "^3.4.1"
}
}