-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 731 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
{
"name": "mathbuzzer",
"version": "1.0.0",
"description": "Buzzer system with answer collection for time-critical contests.",
"main": "src/script.ts",
"scripts": {
"build": "webpack -c webpack.config.js --mode production",
"continuousBuild": "webpack -c webpack.config.js --mode production -w"
},
"dependencies": {
"awesome-notifications": "^3.1.3",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/awesome-notifications": "^3.1.8",
"@types/node": "^25.5.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.0",
"webpack-dev-server": "^5.2.3"
},
"private": true,
"type": "module"
}