-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.86 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
{
"name": "studybuddi",
"version": "1.0.0",
"description": "WELCOME!! This is a open source repository of STUDYBUDDI made by Don Do Phan and Daniel Nguyen.",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "vite",
"server": "nodemon server/server.js",
"dev:https": "VITE_USE_HTTPS=true concurrently \"npm run server\" \"npm run client\"",
"dev:https:win": "set VITE_USE_HTTPS=true && concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"setup": "node -e \"console.log('Run ./setup.sh (macOS/Linux) or setup.bat (Windows) to set up the project')\"",
"db:create": "mysql -u root -p < server/models/schema.sql",
"test:api": "echo 'Testing API endpoint...' && curl http://localhost:5000/api/examples",
"generate-certs": "node generate-certs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donphn/StudyBuddi.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/donphn/StudyBuddi/issues"
},
"homepage": "https://github.com/donphn/StudyBuddi#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.15.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.4",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.0",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"nodemon": "^3.1.10",
"selfsigned": "^2.4.1",
"vite": "^7.1.12"
}
}