forked from denisraslov/react-spreadsheet-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 1.84 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
{
"name": "react-spreadsheet-grid",
"version": "2.0.0",
"description": "An Excel-like grid component for React with custom cell editors, performant scroll & resizable columns",
"main": "lib/bundle.js",
"scripts": {
"build": "NODE_ENV='production' webpack",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest"
},
"keywords": [
"react",
"react-component",
"grid",
"spreadsheet",
"table",
"data-table",
"columns",
"cells",
"scroll",
"resizable"
],
"files": [
"index.js",
"src",
"lib"
],
"author": "Denis Raslov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denisraslov/react-spreadsheet-grid.git"
},
"bugs": {
"url": "https://github.com/denisraslov/react-spreadsheet-grid/issues"
},
"homepage": "https://github.com/denisraslov/react-spreadsheet-grid#readme",
"jest": {
"setupFiles": [
"<rootDir>/jestSetup.js"
],
"moduleNameMapper": {
"^.+\\.css$": "<rootDir>/jestCSSStub.js"
}
},
"dependencies": {
"lodash.find": "^4.6.0",
"lodash.isequal": "^4.5.0",
"lodash.slice": "^4.2.0"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@storybook/react": "3.0.0-alpha.0",
"autoprefixer": "^7.2.6",
"babel-core": "^6.26.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"jest": "^21.2.1",
"path": "^0.12.7",
"postcss-loader": "^2.1.4",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"style-loader": "^0.19.1",
"webpack": "^3.11.0"
}
}