-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 4.95 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 4.95 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "hmda-frontend",
"version": "0.0.1",
"description": "Collection of HMDA frontend apps",
"main": "./src/index.js",
"engines": {
"node": ">=v20.8.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "yarn run cypress run",
"test-localhost": "CYPRESS_HOST=http://localhost:3000 yarn run cypress run --env grepTags='@localhost'",
"test-unauthenticated": "yarn run cypress run --env grepTags='-@auth-required'",
"test-smoke": "CYPRESS_YEARS=2024 yarn run cypress run --env grepTags='@smoke'",
"test-large": "CYPRESS_YEARS=2020 yarn run cypress run --spec cypress/integration/load/LargeFiler.spec.js",
"ci": "VITE_ENVIRONMENT=CI yarn start -p 3000",
"ci-data": "yarn newman run cypress/ci/tests/CREATE_INSTITUTIONS.postman_collection.json -e cypress/ci/config/PLATFORM_ENV.postman_environment.json -d cypress/ci/config/institutions.json",
"make-lar": "node ./scripts/lar/generate_lar_file.mjs",
"cy-update-s3": "./cypress/update-s3-files.sh",
"unit-tests": "vitest --run src/**/__tests__/**",
"unit-tests-legacy": "jest $(find oldTests -name '*.test.js' -o -name '*.test.jsx' | xargs grep -L '// @broken')",
"unit-tests-legacy-all": "jest oldTests/",
"watch-uswds-scss": "npx gulp watch",
"lint": "eslint 'src/**/*.{js,jsx}'"
},
"keywords": [
"HMDA"
],
"author": "Consumer Financial Protection Bureau",
"license": "CC0-1.0",
"dependencies": {
"@cfpb/cfpb-analytics": "^0.3.2",
"@docsearch/react": "3.6.0",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^1.9.7",
"@tanstack/react-table": "8.20.5",
"@uswds/compile": "^1.3.1",
"@uswds/uswds": "3.9.0",
"ansi-html": "0.0.9",
"csv-parse": "4.16.3",
"date-fns": "^4.1.0",
"detect-browser": "4.8.0",
"elliptic": "6.6.1",
"fast-deep-equal": "2.0.1",
"file-saver": "2.0.5",
"gray-matter": "^4.0.3",
"highcharts": "10.3.3",
"highcharts-react-official": "3.2.1",
"html-to-image": "1.11.11",
"jspdf": "4.2.1",
"jwt-decode": "^3.1.2",
"keycloak-js": "25.0.6",
"lodash": "4.18.1",
"mapbox-gl": "1.13.3",
"mark.js": "^8.11.1",
"normalize.css": "8.0.1",
"prettier": "^3.1.1",
"react": "18.3.1",
"react-app-polyfill": "2.0.0",
"react-dom": "18.3.1",
"react-dropzone": "10.2.2",
"react-fluid-table": "^1.4.3",
"react-helmet": "5.2.1",
"react-markdown": "^10.1.0",
"react-paginate": "8.2.0",
"react-redux": "7.2.9",
"react-router-dom": "5.3.4",
"react-select": "3.2.0",
"react-tooltip": "^4.2.21",
"react-window": "1.8.10",
"redux": "4.2.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.2",
"sass": "1.77.8",
"split2": "3.2.2",
"streamsaver": "2.0.6",
"web-streams-ponyfill": "1.4.2"
},
"browserslist": [
"Chrome >= 60",
"Safari >= 10.1",
"Firefox >= 54",
"Edge >= 15",
"ie >= 11"
],
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@cypress/grep": "^5.0.0",
"@cypress/skip-test": "2.6.1",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@testing-library/cypress": "10.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@vitejs/plugin-react": "^4.1.0",
"cypress": "^15.12.0",
"cypress-file-upload": "5.0.8",
"cypress-keycloak": "2.0.2",
"dotenv": "^16.3.1",
"ejs": "3.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-prefer-function-component": "^4.0.1",
"eslint-plugin-unicorn": "^60.0.0",
"http-proxy-middleware": "2.0.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"react-icons": "^4.4.0",
"serialize-javascript": "7.0.3",
"vite": "5.4.19",
"vite-plugin-node-polyfills": "0.25.0",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^3.2.4"
},
"resolutions": {
"ansi-html": "0.0.9",
"browserslist": ">=4.17.6",
"ejs": "3.1.10",
"glob-parent": "5.1.2",
"immer": "9.0.6",
"node-forge": "^1.3.1",
"nth-check": "2.0.1",
"shell-quote": "1.7.3",
"loader-utils": "2.0.4",
"json5": ">=2.2.2",
"semver": ">=7.5.2",
"tough-cookie": ">=4.1.3",
"word-wrap": ">=1.2.4",
"browserify-sign": ">=4.2.2",
"dompurify": "3.2.4",
"esbuild": "0.25.0",
"canvg": "3.0.11",
"elliptic": "6.6.1",
"cross-spawn": ">=7.0.6",
"glob": ">=11.1.0",
"form-data": ">=4.0.4",
"sha.js": ">=2.4.12",
"cipher-base": ">=1.0.5",
"cheerio": "1.0.0-rc.10",
"qs": ">=6.14.0",
"minimatch": "10.2.3",
"lodash": "4.18.1"
},
"packageManager": "yarn@4.1.0"
}