-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"server": "nodemon server/index.js",
"client": "webpack --mode development --watch",
"build": "npm install && npx npm install && webpack --mode production",
"start": "node server/index.js",
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"https": "^1.0.0",
"jsonwebtoken": "^9.0.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"openai": "^3.3.0",
"passport": "^0.6.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-error-overlay": "^6.0.11",
"react-flip-toolkit": "^7.1.0",
"react-grid-gallery": "^1.0.0",
"react-icons": "^4.10.1",
"react-input-slider": "^6.0.1",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.14.1",
"react-spinners": "^0.13.8",
"react-spring": "^9.7.2",
"react-switch": "^7.0.0",
"react-toggle-switch": "^3.0.4",
"socket.io": "^4.7.1",
"styled-components": "^6.0.4"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.0",
"css-loader": "^6.8.1",
"ts-loader": "^9.4.4",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}