-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (119 loc) · 3.37 KB
/
package.json
File metadata and controls
120 lines (119 loc) · 3.37 KB
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
{
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
},
"setupFilesAfterEnv": ["<rootDir>/setupTests.js"]
},
"name": "threddit_front",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.15",
"@mui/joy": "^5.0.0-beta.29",
"@mui/material": "^5.15.14",
"@mui/styled-engine": "^5.15.11",
"@react-oauth/google": "^0.12.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.8",
"axios-mock-adapter": "^1.22.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"bcryptjs-react": "^2.4.6",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"emoji-mart": "^5.6.0",
"jest-mock-axios": "^4.7.3",
"js-cookie": "^3.0.5",
"json-server": "^1.0.0-alpha.23",
"marked": "^12.0.2",
"moment": "^2.30.1",
"quill": "^2.0.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-chat-elements": "^12.0.14",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-input-emoji": "^5.9.0",
"react-quill": "^2.0.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.22.2",
"react-scripts": "5.0.1",
"react-toastify": "^10.0.5",
"reactjs-social-login": "^2.6.3",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tar-fs": "^3.0.5",
"text-encoding": "^0.7.0",
"web-vitals": "^2.1.4",
"whatwg-url": "^14.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"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"
]
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@chromatic-com/storybook": "^1.2.25",
"@storybook/addon-docs": "^8.0.4",
"@storybook/addon-essentials": "^8.0.4",
"@storybook/addon-interactions": "^8.0.4",
"@storybook/addon-links": "^8.0.4",
"@storybook/addon-onboarding": "^8.0.4",
"@storybook/blocks": "^8.0.4",
"@storybook/preset-create-react-app": "^8.0.4",
"@storybook/react": "^8.0.4",
"@storybook/react-webpack5": "^8.0.4",
"@storybook/test": "^8.0.4",
"babel-jest": "^29.7.0",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"msw": "^2.2.10",
"prop-types": "^15.8.1",
"storybook": "^8.0.4",
"webpack": "^5.91.0",
"whatwg-fetch": "^3.6.20"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^5.0.10"
}
}