-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.77 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
{
"name": "SIGame",
"version": "2.1.0",
"description": "SIGame Engine - Multi-format Open Source Web Quiz Engine",
"main": "dist/SIGame.html",
"scripts": {
"start": "concurrently \"npm run peer-server\" \"webpack serve --mode development\"",
"peer-server": "peerjs --port 9001 --key peerjs --path /",
"build": "webpack --mode production",
"package": "npm run build && powershell -Command \"Compress-Archive -Path dist\\SIGame.html,dist\\mobile.html,scripts\\start-peer-server.bat,scripts\\start-peer-server.sh,scripts\\README.txt,scripts\\README.ru.txt -DestinationPath SIGame-v%npm_package_version%.zip -Force; Write-Host 'Done: SIGame-v%npm_package_version%.zip'\"",
"dev": "webpack --mode development --watch",
"serve": "webpack serve --mode development",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test"
},
"keywords": [
"quiz",
"game",
"music",
"lotto",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/jest": "^30.0.0",
"@types/jszip": "^3.4.0",
"@types/node": "^20.10.0",
"@types/qrcode": "^1.5.6",
"concurrently": "^9.2.1",
"css-loader": "^6.8.1",
"fast-xml-parser": "^5.3.4",
"html-webpack-plugin": "^5.5.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jszip": "^3.10.1",
"mini-css-extract-plugin": "^2.9.4",
"peer": "^1.0.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"peerjs": "^1.5.5",
"qrcode": "^1.5.4"
}
}