-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.76 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
{
"name": "material-kit-react",
"version": "1.8.0",
"description": "Material Kit React. Coded by Creative Tim",
"private": true,
"main": "dist/index.js",
"dependencies": {
"@firebase/storage": "^0.3.26",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "4.3.2",
"@material-ui/icons": "4.2.1",
"@syncfusion/ej2-react-grids": "^17.4.43",
"axios": "^0.19.2",
"classnames": "2.2.6",
"firebase": "^7.7.0",
"history": "4.9.0",
"material-table": "^1.55.0",
"material-ui-upload": "^1.2.1",
"moment": "2.24.0",
"node-sass": "^4.13.1",
"nouislider": "14.0.2",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-cookie": "^4.0.3",
"react-datetime": "2.16.3",
"react-dom": "16.9.0",
"react-firebase-file-uploader": "^2.4.3",
"react-google-login": "^5.1.0",
"react-hot-loader": "^4.12.19",
"react-router-dom": "5.0.1",
"react-s3": "^1.3.1",
"react-scripts": "^3.3.1",
"react-scroll": "^1.7.16",
"react-slick": "0.25.2",
"react-swipeable-views": "0.13.3",
"react-table": "^7.0.0-rc.15",
"react-tilt": "^0.1.4"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8",
"prettier": "1.18.2"
},
"optionalDependencies": {
"typescript": "3.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && gulp licenses",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint:check": "eslint . --ext=js,jsx; exit 0",
"lint:fix": "eslint . --ext=js,jsx --fix; exit 0",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"build-package-css": "node-sass src/assets/scss/material-kit-react.scss dist/material-kit-react.css",
"build-package": "npm run build-package-css && babel src --out-dir dist",
"compile-sass": "node-sass src/assets/scss/material-kit-react.scss src/assets/css/material-kit-react.css",
"minify-sass": "node-sass src/assets/scss/material-kit-react.scss src/assets/css/material-kit-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/material-kit-react.scss src/assets/css/material-kit-react.css --source-map true"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": []
}
}