-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"name": "unitube",
"version": "0.1.0",
"private": true,
"dependencies": {
"animate.css": "^4.1.1",
"axios": "^0.24.0",
"bootstrap": "^4.6.1",
"date-fns": "^2.28.0",
"enzyme": "^3.10.0",
"jquery": "^3.6.0",
"js-file-download": "^0.4.9",
"moment": "^2.24.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-paginator": "^2.1.0",
"react-bootstrap-table2-toolkit": "^2.1.1",
"react-bootstrap-typeahead": "^5.2.1",
"react-datepicker": "^4.6.0",
"react-dom": "^17.0.2",
"react-icons": "^4.6.0",
"react-redux": "^7.2.6",
"react-redux-i18n": "^1.9.3",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-test-renderer": "^17.0.2",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"sass": "^1.49.0",
"sweetalert2": "^11.3.6",
"sweetalert2-react-content": "^4.2.0"
},
"scripts": {
"start": "cross-env PORT=8000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --watchAll=false --coverage",
"eject": "react-scripts eject",
"local-dev-db": "json-server --port 3002 ./json-server/db.json --routes ./json-server/routes.json --middlewares ./json-server/singular.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"cross-env": "^7.0.3",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"json-server": "^0.17.0",
"redux-mock-store": "^1.5.4"
},
"overrides": {
"react-bootstrap-table-next": {
"underscore": "1.13.0-2"
}
}
}