-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.13 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "openfido",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "4.4.0",
"@fast-csv/parse": "^4.3.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "4.10.3",
"axios": "^1.6.0",
"axios-oauth-client": "^1.4.4",
"axios-token-interceptor": "^0.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.1.2",
"date-fns": "^2.14.0",
"dotenv": "^16.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"express": "^4.17.3",
"fast-csv": "^4.3.5",
"gatsby-cli": "^4.1.0",
"lodash": "^4.17.21",
"mime": "^2.4.5",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.13.5",
"react": "^16.13.1",
"react-csv": "^2.2.2",
"react-date-range": "^1.0.3",
"react-dom": "^16.13.1",
"react-multi-select-component": "^4.0.6",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-select": "^5.2.2",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-localstorage-simple": "^2.3.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sortedmap": "^0.0.2",
"styled-components": "^5.1.1",
"validator": "^13.7.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:integration": "jest -c tests_integration/jest.config.js --runInBand",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.js'"
},
"eslintConfig": {
"extends": [
"airbnb"
],
"globals": {
"window": true
},
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
},
"env": {
"es6": true
},
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"camelcase": 1,
"max-len": 1,
"jsx-a11y/label-has-associated-control": [
2,
{
"assert": "either"
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"aws-sdk": "^2.683.0",
"cross-env": "^7.0.3",
"eslint-plugin-jest": "^28.3.0",
"jest-puppeteer": "^10.0.1",
"nodemon": "^3.1.0",
"puppeteer": "^22.7.1"
}
}