-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "facebook-clone",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.4",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"framer-motion": "^5.6.0",
"install": "^0.13.0",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"multer": "^1.4.4",
"nanoid": "^3.2.0",
"query-string": "^7.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-emoji": "^0.5.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-scroll-to-bottom": "^4.2.0",
"redux": "^4.1.2",
"socket.io-client": "^4.4.1",
"web-vitals": "^2.1.3"
},
"scripts": {
"start-react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"gacp": "git add . && git commit -m updated && git push",
"server": " nodemon backend/app.js",
"chat": "nodemon chatapp/index",
"start": "node backend/app.js"
},
"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"
]
},
"devDependencies": {
"mini-css-extract-plugin": "^2.5.2",
"tailwindcss": "^3.0.15"
}
}