-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 3.78 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "client",
"version": "2.0.0",
"author": "Nacho Caiafa",
"private": true,
"proxy": "http://localhost:5000",
"scripts": {
"lint": "eslint --ext .jsx,.js src",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm run test -- --watchAll=false",
"eject": "react-scripts eject",
"cypress": "cypress open",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/runtime": "^7.22.6",
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.7.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-slab": "^5.0.5",
"@loadable/component": "^5.15.3",
"@tanstack/react-query": "^4.14.3",
"@tanstack/react-query-devtools": "^4.14.3",
"@vercel/analytics": "^1.0.0",
"axios": "^1.6.2",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"date-fns": "^2.30.0",
"firebase": "^10.12.4",
"framer-motion": "^10.12.4",
"jwt-decode": "^3.1.2",
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.1",
"lodash": "^4.17.21",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-login": "^5.2.2",
"react-icons": "^4.10.1",
"react-images-uploading": "^3.1.7",
"react-router-dom": "^6.14.2",
"react-scripts": "^5.0.1",
"reselect": "^4.1.6",
"uuid": "^9.0.1",
"web-vitals": "^3.4.0",
"zustand": "^4.3.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@chakra-ui/storybook-addon": "^4.0.16",
"@jest/globals": "^29.5.0",
"@playwright/test": "^1.35.1",
"@storybook/addon-actions": "^7.0.26",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-links": "^7.0.20",
"@storybook/builder-webpack5": "^7.4.6",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^7.0.18",
"@storybook/preset-create-react-app": "^7.0.26",
"@storybook/react": "^7.5.3",
"@storybook/testing-library": "^0.2.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.4.3",
"@types/styled-components": "^5.1.32",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-named-exports-order": "^0.0.2",
"cypress": "^12.7.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react-error-overlay": "^6.0.11",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2"
}
}