-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·113 lines (113 loc) · 3.55 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mdbreact",
"version": "5.2.0",
"author": "MDBootstrap",
"repository": "https://github.com/mdbootstrap/React-Bootstrap-with-Material-Design",
"main": "dist/mdbreact.js",
"module": "dist/mdbreact.esm.js",
"license": "SEE LICENSE IN <license.pdf>",
"types": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"jest": {
"verbose": true,
"clearMocks": true,
"setupFiles": [
"<rootDir>/src/tests/setupTests.js",
"<rootDir>/src/tests/throw-on-prop-type-error.js"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/src/tests/styleMock.js"
}
},
"scripts": {
"build": "yarn run sass-compile-pro && rollup -c",
"build-free": "yarn run sass-compile-free && rollup -c",
"sass-compile-pro": "node-sass dist/scss/mdb-pro.scss dist/css/mdb.css --output-style compressed",
"sass-compile-free": "node-sass dist/scss/mdb-free.scss dist/css/mdb.css --output-style compressed",
"webpack": "concurrently \"webpack-dev-server --watch\" ",
"start": "yarn run webpack",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@material-ui/core": "3.9.3",
"bootstrap-css-only": "4.4.1",
"chart.js": "2.9.4",
"classnames": "2.2.6",
"focus-trap-react": "^6.0.0",
"material-ui-pickers": "2.2.4",
"perfect-scrollbar": "1.5.0",
"popper.js": "^1.16.0",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "17.0.1",
"react-chartjs-2": "2.9.0",
"react-dom": "17.0.1",
"react-image-lightbox": "5.1.1",
"react-numeric-input": "2.2.3",
"react-popper": "^1.3.7",
"react-router-dom": "^5.1.2",
"react-scroll": "1.7.16",
"react-toastify": "5.5.0",
"react-transition-group": "4.3.0",
"sass-loader": "^8.0.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@svgr/webpack": "5.5.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"check-prop-types": "^1.1.2",
"concurrently": "5.3.0",
"css-loader": "5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.0",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"node-sass": "4.13.1",
"prettier": "^2.2.0",
"rollup": "1.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "3.1.8",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "2.0.0",
"typescript": "4.1.2",
"url-loader": "4.1.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1"
}
}