-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·84 lines (84 loc) · 2.85 KB
/
package.json
File metadata and controls
executable file
·84 lines (84 loc) · 2.85 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "material-kit-react",
"version": "1.8.0",
"description": "Material Kit React. Coded by Creative Tim",
"private": true,
"main": "dist/index.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@google-cloud/vision": "^1.11.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "4.2.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"classnames": "2.2.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.14.3",
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.6.1",
"googleapis": "^39.2.0",
"history": "4.9.0",
"http2": "^3.3.7",
"moment": "2.24.0",
"node-sass": "4.12.0",
"nouislider": "14.0.2",
"promise": "^8.1.0",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-compose": "^2.0.0",
"react-datetime": "2.16.3",
"react-dom": "16.9.0",
"react-dropzone": "^11.0.3",
"react-firebase-file-uploader": "^2.4.3",
"react-redux": "^7.2.1",
"react-router-dom": "5.0.1",
"react-scripts": "3.1.0",
"react-slick": "0.25.2",
"react-spinners": "^0.9.0",
"react-swipeable-views": "0.13.3",
"react-toastify": "^6.0.8",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"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": []
}
}