-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 742 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 742 Bytes
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
{
"dependencies": {
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"joi": "^17.12.3",
"pako": "^2.1.0",
"socket.io": "^4.7.5"
},
"name": "quizzle",
"description": "A free, open source and self hosted quiz platform for schools",
"version": "2.3.2",
"main": "index.js",
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.0"
},
"scripts": {
"start": "bun server/index.js",
"dev:server": "nodemon server/index.js",
"dev:client": "cd webui && bun run dev",
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\""
},
"author": "Mathias Wagner <germannewsmaker@gmail.com>",
"license": "ISC",
"repository": "https://github.com/gnmyt/Quizzle.git"
}