-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "kulon",
"version": "1.0.3-wip.1",
"description": "Multiplayer 2D Pixel Survival Puzzle Game",
"main": "dist/backend/server.js",
"scripts": {
"start": "node dist/backend/server.js",
"dev": "nodemon src/backend/server.ts",
"build": "echo Updating Assets && tsx src/backend/updateAssets.ts && echo Bundling Frontend && npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.prod.ts && echo Compiling Backend && rm -rf ./dist && tsc -p . --extendedDiagnostics && echo Done!",
"dev:build": "npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.dev.ts",
"c:build": "echo Updating Assets && tsx src/backend/updateAssets.ts && npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.test.ts",
"s:build": "rm -rf ./dist && tsc -p . --extendedDiagnostics",
"init:build": "echo Updating Assets && tsx src/backend/updateAssets.ts && echo Testing Frontend && npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.test.ts && echo Testing Backend && rm -rf ./dist && tsc -p . --extendedDiagnostics",
"assets": "tsx src/backend/updateAssets.ts",
"sass": "sass --watch ./src/frontend/stylesheets/app.scss ./public/bundle/app.css --style compressed",
"format": "prettier --write .",
"check": "prettier --check .",
"type-check": "tsc -p . --pretty --noEmit",
"lint": "eslint --ext ts --ext js",
"up:patch": "npm --no-git-tag-version version patch",
"up:minor": "npm --no-git-tag-version version minor",
"up:major": "npm --no-git-tag-version version major",
"prepatch": "npm --no-git-tag-version version prepatch && npm --no-git-tag-version version prerelease --preid wip",
"preminor": "npm --no-git-tag-version version preminor && npm --no-git-tag-version version prerelease --preid wip",
"premajor": "npm --no-git-tag-version version premajor && npm --no-git-tag-version version prerelease --preid wip",
"prerelease": "npm --no-git-tag-version version prerelease",
"bump": "tsx zzzBump.ts",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged ng lint ng test",
"pre-push": "ng build --aot true"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devanka761/kulon.git"
},
"keywords": [],
"author": "Devanka761 <contact@devanka.id> (https://devanka.id/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/devanka761/kulon/issues"
},
"homepage": "https://github.com/devanka761/kulon#readme",
"dependencies": {
"connect-mongo": "^6.0.0",
"dotenv": "^17.4.2",
"ejs": "^6.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"express-ws": "^5.0.2",
"mongoose": "^9.6.3",
"qrcode": "^1.5.4",
"screenfull": "^6.0.2",
"webfont-awesome-pro": "1.2.7",
"webrtc-adapter": "^9.0.5"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"@types/express-ws": "^3.0.6",
"@types/node": "^25.9.1",
"@types/qrcode": "^1.5.6",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.7",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.10.2",
"prettier": "^3.8.3",
"pretty-quick": "^4.2.2",
"raw-loader": "^4.0.2",
"sass": "^1.100.0",
"sass-loader": "^17.0.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3"
}
}