-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
111 lines (111 loc) · 3.03 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-redux-sagas-boilerplate",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-plugin-module-resolver": "^4.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.6.1",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"firebase": "^9.6.1",
"http-proxy-middleware": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.3",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.1.1",
"react-router-redux": "^4.0.8",
"react-scripts": "^5.0.0",
"react-toastify": "^8.1.0",
"react-widgets": "^5.5.1",
"react-widgets-moment": "^5.0.11",
"redux": "^4.1.2",
"redux-form": "^8.3.8",
"redux-localstorage": "^0.4.1",
"redux-saga": "^1.1.3",
"semantic-ui-css": "^2.4.1",
"styled-components": "^5.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./",
"lint-fix": "eslint --cache --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": "npm run lint-fix",
"*.{js,jsx,css,md,json}": [
"npm run format"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverage": true,
"clearMocks": true,
"notify": true,
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/test-env.js",
"<rootDir>/jest-setup.js"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest",
".*\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>test-env.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}