-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "rand",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start:client": "vite preview --host --port=$PORT",
"start:server": "node server/index.js",
"test": "mocha --parallel --recursive ./test"
},
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"chai": "^4.3.7",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"glob": "^9.3.1",
"mongoose": "^7.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-router-dom": "^6.9.0",
"rot-js": "^2.2.0",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.14",
"mocha": "^10.1.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"vite": "^3.2.0",
"vite-plugin-mix": "^0.4.0"
}
}