forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.87 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
{
"name": "react-data-grid-es2015",
"version": "7.0.0-canary.17",
"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 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": {
"clsx": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/runtime": "^7.10.1",
"@popperjs/core": "^2.4.2",
"@storybook/react": "^5.3.19",
"@testing-library/react": "^10.0.4",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/faker": "^4.1.12",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.153",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-select": "^3.0.13",
"@types/react-virtualized": "^9.21.10",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-loader": "^8.1.0",
"babel-plugin-optimize-clsx": "^2.6.0",
"clean-css": "^4.2.3",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-sonarjs": "^0.5.0",
"faker": "^4.1.0",
"jest": "^26.0.1",
"less": "^3.11.1",
"less-loader": "^6.1.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"react": "^16.13.1",
"react-contextmenu": "^2.13.0",
"react-dnd": "^11.1.1",
"react-dnd-html5-backend": "^11.1.1",
"react-dom": "^16.13.1",
"react-popper": "^2.2.3",
"react-select": "^3.1.0",
"react-virtualized": "^9.21.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "~3.9.3"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
}
}