-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
{
"name": "ui-modernization-demo",
"version": "1.0.0",
"description": "Reference materials for Unemployment Insurance modernization application development",
"private": true,
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@hookform/resolvers": "^3.0.1",
"@storybook/addon-a11y": "^7.0.2",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-webpack5": "^7.0.2",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@trussworks/react-uswds": "^4.2.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.33",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@uswds/uswds": "3.10.0",
"babel-jest": "^29.5.0",
"classnames": "^2.3.2",
"countries-list": "^2.6.1",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.11.0",
"husky": "^8.0.3",
"i18next": "^22.4.14",
"i18next-browser-languagedetector": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.2.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"storybook": "^7.0.2",
"style-loader": "^3.3.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.3",
"webpack": "^5.78.0",
"yup": "^1.0.2"
},
"scripts": {
"install-ci": "yarn --frozen-lockfile",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.md": [
"prettier --write"
],
"src/**/*.{css,scss}": [
"prettier --write"
]
},
"resolutions": {
"nwsapi": "2.2.13"
}
}