-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 2.98 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
{
"name": "auth-hosting",
"version": "0.1.0",
"private": true,
"dependencies": {
"@descope/react-sdk": "2.3.2",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "5.16.4",
"@mui/material": "5.16.4",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"usehooks-ts": "2.16.0",
"web-vitals": "3.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@craco/craco": "^7.1.0",
"@craco/types": "^7.1.0",
"@cyclonedx/webpack-plugin": "^3.9.2",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/babel__core": "^7",
"@types/jest": "29.5.14",
"@types/node": "22.7.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.5.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-testing-library": "6.4.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"react-scripts": "5.0.1",
"typescript": "<5.5.4",
"webpack": "^5.91.0"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --ignore-path .gitignore --write .",
"format-check": "prettier --ignore-path .gitignore --check .",
"format-lint": "lint-staged",
"lint:ci": "eslint . --max-warnings 0",
"lint": "eslint --fix --max-warnings 0",
"lint:all": "yarn run lint .",
"start": "craco start",
"build": "craco build",
"test": "craco test --coverage",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"npm run lint"
],
"*": [
"npm run format"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "^18"
},
"packageManager": "yarn@1.22.22",
"homepage": "login",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/index.tsx"
]
}
}