-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.87 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
{
"name": "sticky-todo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "4.1.0",
"@material-ui/icons": "4.1.0",
"animate.css": "3.7.2",
"classnames": "2.2.6",
"firebase": "^6.6.2",
"history": "4.9.0",
"moment": "2.24.0",
"node-sass": "^4.13.1",
"nouislider": "13.1.5",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-animate-on-scroll": "2.1.5",
"react-datetime": "2.16.3",
"react-dom": "^16.13.1",
"react-image-gallery": "0.8.17",
"react-redux": "^7.2.0",
"react-router-dom": "5.0.1",
"react-scripts": "^3.4.0",
"react-slick": "0.24.0",
"react-swipeable-views": "0.13.3",
"react-table": "6.10.0",
"react-tagsinput": "3.19.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"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",
"compile-sass": "node-sass src/assets/scss/material-kit-pro-react.scss src/assets/css/material-kit-pro-react.css",
"minify-sass": "node-sass src/assets/scss/material-kit-pro-react.scss src/assets/css/material-kit-pro-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/material-kit-pro-react.scss src/assets/css/material-kit-pro-react.css --source-map true"
},
"optionalDependencies": {
"eslint-config-prettier": "4.3.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"prettier": "1.18.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}