-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
{
"name": "amazon-connect-insights",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "react-scripts start",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll --coverage --collectCoverageFrom=src/{components,pages,Utils}/**/*.{ts,tsx} --collectCoverageFrom=!src/**/*.{types,stories}.{ts,tsx}",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress:": "cypress open"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"add": "^2.0.6",
"autoprefixer": "^10.4.19",
"axios": "^1.6.8",
"chart.js": "^4.4.3",
"classnames": "^2.5.1",
"firebase": "^10.12.1",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"sockjs-client": "^1.6.1",
"typescript": "^5.4.5",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@chromatic-com/storybook": "^1.3.2",
"@cypress/webpack-preprocessor": "^6.0.1",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/addon-onboarding": "^8.0.10",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.10",
"@storybook/preset-create-react-app": "^8.0.10",
"@storybook/react": "^8.0.10",
"@storybook/react-webpack5": "^8.0.10",
"@storybook/test": "^8.0.10",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/sockjs-client": "^1.5.4",
"babel-jest": "^29.7.0",
"cypress": "^13.11.0",
"eslint-plugin-storybook": "^0.8.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"storybook": "^8.0.10",
"storybook-addon-react-router-v6": "^2.0.15",
"storybook-react-context": "^0.6.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.3",
"ts-loader": "^9.5.1",
"webpack": "^5.91.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}