-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 3.24 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
{
"name": "study-tracker-react",
"version": "0.6.5",
"description": "Study Tracker React components.",
"private": true,
"author": "Will Oemler",
"scripts": {
"sass:compile": "node-sass-chokidar --include-path ./react --include-path ./node_modules react/appstack/assets/scss/ -o public/css/",
"sass:autoprefixer": "postcss public/css/*.css --use autoprefixer -d public/css",
"build:css": "npm-run-all sass:*",
"build:js": "react-scripts build",
"watch:css": "chokidar \"react/appstack/assets/scss/**/*\" -c \"npm run build:css\"",
"watch:js": "react-scripts start",
"build:less": "less-watch-compiler --run-once --main-file=app.less react/less/ src/main/resources/static/css/",
"watch:less": "npm run build:less && less-watch-compiler --main-file=index.less react/less/ react/less/",
"start": "npm-run-all -p build:less watch:js watch:less",
"build:all": "npm-run-all -p build:js build:less",
"build:webpack": "webpack --mode development",
"build:webpack-prd": "webpack --mode production --no-stats",
"build": "npm-run-all build:less build:webpack",
"build:production": "npm-run-all build:less build:webpack-prd"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"> 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"not Edge < 79",
"Firefox ESR",
"iOS >= 10",
"Safari >= 10",
"Android >= 6",
"not Explorer <= 11"
],
"dependencies": {
"@babel/runtime": "^7.16.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.15",
"@reduxjs/toolkit": "1.6.2",
"bootstrap": "5.1.2",
"classnames": "2.3.1",
"crossfilter2": "^1.5.4",
"dateformat": "^5.0.2",
"formik": "2.2.9",
"history": "4.10.1",
"i18next": "21.2.4",
"qs": "^6.10.1",
"react": "16.14.0",
"react-app-polyfill": "2.0.0",
"react-bootstrap": "2.0.2",
"react-bootstrap-table-next": "4.0.3",
"react-bootstrap-table2-editor": "^1.4.0",
"react-bootstrap-table2-paginator": "2.1.2",
"react-bootstrap-table2-toolkit": "2.1.3",
"react-datepicker": "4.3.0",
"react-datetime": "3.1.1",
"react-dom": "16.14.0",
"react-dragula": "1.1.17",
"react-dropzone": "^11.4.2",
"react-feather": "2.0.9",
"react-i18next": "11.12.0",
"react-input-mask": "2.0.4",
"react-perfect-scrollbar": "1.5.8",
"react-quill": "2.0.0-beta.4",
"react-redux": "7.2.5",
"react-redux-toastr": "^7.6.5",
"react-router-dom": "^5.3.0",
"react-select": "5.1.0",
"react-transition-group": "4.4.2",
"redux": "4.1.2",
"sweetalert": "^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-parameters": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"less-watch-compiler": "^1.16.3",
"npm-run-all": "4.1.5",
"postcss": "8.3.9",
"postcss-cli": "9.0.1",
"react-scripts": "4.0.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
}
}