-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "playcore",
"version": "1.0.0",
"description": "Full-stack gaming bootcamp platform",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "nodemon backend/server.js",
"start": "node backend/server.js",
"start:backend": "node backend/server.js",
"test:backend": "jest",
"dev:frontend": "cd frontend && vite",
"build:frontend": "cd frontend && vite build",
"preview:frontend": "cd frontend && vite preview",
"lint:frontend": "cd frontend && eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"axios": "^1.13.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.3.1",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "1.4.4",
"multer-gridfs-storage": "^5.0.2",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.2",
"pdfkit": "^0.17.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-quill": "^2.0.0",
"react-router-dom": "^7.13.0",
"slugify": "^1.6.6",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.24",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"postcss": "^8.5.6",
"supertest": "^6.3.3",
"tailwindcss": "^4.0.0",
"vite": "^5.1.0"
},
"author": "AntiGravity",
"license": "ISC"
}