forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.21 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
{
"private": true,
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "lerna bootstrap --no-ci",
"prebuild": "node tools/buildStylesheets.js",
"build": "lerna run build",
"start": "node webpack-dev-server.js",
"eslint": "eslint --ext js,ts,tsx --max-warnings 0 -f codeframe --cache --color packages/react-data-grid/src packages/react-data-grid-addons/src tests examples",
"eslint:fix": "npm run eslint -- --fix",
"web": "cd website && npm run start"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"@testing-library/react": "^9.3.2",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.9.4",
"@types/react-is": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-loader": "^8.0.6",
"clean-css": "^4.2.1",
"css-loader": "^3.2.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-sonarjs": "^0.5.0",
"faker": "^4.1.0",
"immutability-helper": "^3.0.1",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"markdown": "^0.5.0",
"react": "^16.12.0",
"react-contextmenu": "^2.13.0",
"react-data-grid": "file:packages/react-data-grid",
"react-data-grid-addons": "file:packages/react-data-grid-addons",
"react-dnd-test-backend": "^2.6.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-virtualized": "^9.21.2",
"recharts": "^1.7.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"terser-webpack-plugin": "^2.2.1",
"ts-jest": "^24.2.0",
"typescript": "~3.7.3",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0"
}
}