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
65 lines (65 loc) · 2.21 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.21 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
{
"private": true,
"license": "MIT",
"scripts": {
"test": "jest",
"test-dev": "jest --watch",
"postinstall": "lerna bootstrap --no-ci",
"prebuild": "node tools/buildStylesheets.js",
"build": "lerna run build",
"build-commonjs": "lerna run build-commonjs",
"start": "node webpack-dev-server.js",
"eslint": "eslint --report-unused-disable-directives --ext js,ts,tsx --max-warnings 0 -f codeframe --cache --color packages/react-data-grid/src packages/react-data-grid-addons/src tests examples",
"fix-eslint": "npm run eslint -- --fix",
"web": "cd website && npm run start"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.1",
"@testing-library/react": "^8.0.1",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.1",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.3",
"@types/react-is": "^16.7.1",
"@types/shallowequal": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-loader": "^8.0.6",
"clean-css": "^4.2.1",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-sonarjs": "^0.4.0",
"faker": "^4.1.0",
"immutability-helper": "^3.0.1",
"immutable": "^3.8.2",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"markdown": "^0.5.0",
"react": "^16.8.6",
"react-contextmenu": "^2.10.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.8.6",
"react-router-dom": "^5.0.1",
"recharts": "^1.6.2",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"ts-jest": "^24.0.1",
"typescript": "^3.5.2",
"webpack": "^4.35.3",
"webpack-dev-server": "^3.7.2"
}
}