This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.36 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
{
"name": "datagrid-jsdom-bug",
"version": "0.0.1",
"description": "Bug when rendering a MUI datagrid",
"repository": "https://github.com/mattcarlotta/datagrid-jsdom-bug",
"sideEffects": false,
"author": "Matt Carlotta",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"dev": "next dev",
"test": "jest --config ./jest.json --passWithNoTests",
"test:cov": "jest --config ./jest.json --coverage",
"test:watch": "jest --config ./jest.json --watch --onlyChanged"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.11.4",
"@material-ui/data-grid": "https://pkg.csb.dev/mui-org/material-ui-x/commit/0c03787f/@material-ui/data-grid",
"@react-icons/all-files": "^4.1.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"moment-timezone": "^0.5.33",
"next": "^10.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"snackables": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@emotion/jest": "^11.3.0",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.10",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isempty": "^4.4.6",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-react-remove-properties": "^0.3.0",
"browserslist": "^4.16.5",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-watch": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-css-modules-transform": "^4.2.1",
"jest-enzyme": "^7.1.2",
"jsdom": "^16.5.3",
"opener": "^1.5.2",
"prettier": "^2.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4",
"webpack": "^5.36.0"
}
}