-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
{
"name": "frontend-spa-template",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "craco start",
"build": "craco build",
"git-hooks-install": "husky install",
"storybook-start": "start-storybook -p 6006",
"storybook-build": "build-storybook",
"generate-ts-doc": "api-extractor run --local --verbose",
"lint:eslint": "eslint .",
"lint:tsc": "tsc",
"lint:md": "markdownlint -i CHANGELOG.md **/*.md",
"test:unit": "jest --verbose",
"test:memory-leak": "memlab run -v --scenario ./memlab/memoryLeakTest.js",
"lighthouse:desktop": "lhci autorun --config=lighthouserc.desktop.js& ",
"lighthouse:mobile": "lhci autorun --config=lighthouserc.mobile.js"
},
"dependencies": {
"@apollo/client": "^3.12.9",
"@craco/craco": "^7.1.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.4.2",
"@sentry/node": "^8.54.0",
"@sentry/react": "^8.54.0",
"dotenv": "^16.4.7",
"graphql": "^16.10.0",
"i18next": "^23.16.8",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"memlab": "^1.1.56",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0",
"react-scripts": "^5.0.1",
"reflect-metadata": "^0.2.2",
"require-from-string": "^2.0.2",
"storybook": "^8.5.3",
"tsyringe": "^4.8.0",
"web-vitals": "^4.2.4",
"webpack": "^5.97.1"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@lhci/cli": "^0.14.0",
"@microsoft/api-extractor": "^7.49.2",
"@storybook/addon-actions": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/builder-webpack5": "^8.5.3",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^8.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-testing-library": "^7.1.1",
"husky": "^9.1.7",
"markdownlint-cli": "^0.42.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}