-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.87 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.87 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
{
"name": "@cfpb/ccdb5-ui",
"version": "2.16.2",
"packageManager": "yarn@4.13.0",
"description": "Consumer Complaint Database UI",
"homepage": "https://www.consumerfinance.gov/",
"repository": {
"type": "git",
"url": "https://github.com/cfpb/ccdb5-ui.git"
},
"license": "CC0-1.0",
"engines": {
"node": ">=24.x"
},
"author": {
"name": "Consumer Financial Protection Bureau",
"email": "tech@cfpb.gov",
"url": "https://cfpb.github.io/"
},
"browserslist": [
"> 0.2% and not dead"
],
"files": [
"dist/*"
],
"scripts": {
"lint": "yarn prettier \"src/**/*.{js,jsx,ts,tsx,json,md}\" --write && yarn eslint ./src --fix && yarn stylelint \"src/**/*.{css,scss}\" --fix && yarn lint:cypress",
"lint:cypress": "yarn eslint ./cypress --fix",
"prepare": "husky",
"release": "yarn run build && release-it --npm.skipChecks",
"test": "TZ=UTC jest --coverage --watchAll=false",
"start": "rsbuild dev",
"build": "./scripts/build.sh",
"preview": "rsbuild preview"
},
"dependencies": {
"@cfpb/cfpb-design-system": "^5.3.2",
"@cfpb/design-system-react": "^1.0.2",
"@reduxjs/toolkit": "^2.11.2",
"britecharts": "git+https://github.com/cfpb/cfpb-britecharts.git#v2.6",
"d3": "^7.9.0",
"d3-array": "3.2.4",
"dayjs": "^1.11.20",
"highcharts": "12.6.0",
"history": "^5.3.0",
"intro.js": "7.2.0",
"intro.js-react": "1.0.0",
"prop-types": "^15.8.1",
"query-string": "^9.3.1",
"react": "^19.2.5",
"react-bootstrap": "^2.10.10",
"react-bootstrap-typeahead": "^6.4.1",
"react-dom": "^19.2.5",
"react-fast-compare": "^3.2.2",
"react-modal": "^3.16.3",
"react-redux": "^9.2.0",
"react-router": "^7.14.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@cfpb/browserslist-config": "^0.0.6",
"@eslint/js": "^9.39.4",
"@rsbuild/core": "^1.7.5",
"@rsbuild/plugin-react": "^1.4.6",
"@rsbuild/plugin-sass": "^1.5.1",
"@rsbuild/plugin-svgr": "^1.3.1",
"@testing-library/cypress": "^10.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"autoprefixer": "^10.5.0",
"babel-jest": "^30.3.0",
"babel-plugin-module-resolver": "^5.0.3",
"coveralls-next": "^6.0.1",
"cypress": "^15.14.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^5.3.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-redux": "^4.2.2",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.5.0",
"husky": "^9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^16.4.0",
"lodash": "^4.18.1",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"release-it": "^19.2.4",
"sass": "^1.99.0",
"string-replace-loader": "^3.3.0",
"stylelint": "^17.9.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"webpack": "^5.106.2"
},
"lint-staged": {
"src/**/*.{css,scss}": [
"stylelint --fix"
],
"{cypress,src}/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
],
"{cypress,src}/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}