-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.1 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.1 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": "kirimin-chat-app",
"version": "3.1.20",
"description": "Chat App Written in TypeScript with Responsive Design",
"main": "./dist/bundle/backend/server.js",
"scripts": {
"start": "node .",
"dev": "nodemon",
"dev:start": "nodemon",
"build": "echo Bundling Frontend && npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.prod.ts && echo Frontend Done && tsx ./src/backend/swClient.ts && echo Compiling Backend && rm -rf ./dist/bundle && tsgo -p . --extendedDiagnostics && echo Backend Done && echo Finished",
"sw": "tsx ./src/backend/swClient.ts",
"client:build": "npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.prod.ts",
"dev:build": "npx --node-options=\"--import tsx\" webpack --disable-interpret --config webpack.dev.ts",
"server:build": "rm -rf ./dist/bundle && tsgo -p . --extendedDiagnostics",
"dbclear": "tsx ./src/backend/clearDB.ts",
"format": "prettier --write .",
"check": "prettier --check .",
"type-check": "tsgo -p . --pretty --noEmit",
"lint": "eslint --ext ts --ext tsx --ext js",
"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/chat-app.git"
},
"keywords": [],
"author": "Devanka761 <contact@devanka.id> (https://devanka.id/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/devanka761/chat-app/issues"
},
"homepage": "https://github.com/devanka761/chat-app#readme",
"dependencies": {
"@google/genai": "^1.11.0",
"dotenv": "^17.0.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.1",
"express-ws": "^5.0.2",
"fluent-ffmpeg": "^2.1.3",
"highlight.js": "^11.11.1",
"marked": "^17.0.0",
"nodemailer": "^7.0.3",
"session-file-store": "^1.5.0",
"web-push": "^3.6.7",
"webfont-awesome-pro": "1.2.7",
"webrtc-adapter": "^9.0.3"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.29.0",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/express-ws": "^3.0.5",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.0.3",
"@types/nodemailer": "^7.0.0",
"@types/session-file-store": "^1.2.5",
"@types/web-push": "^3.6.4",
"@types/webpack": "^5.28.5",
"@typescript/native-preview": "^7.0.0-dev.20250814.1",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.5.3",
"pretty-quick": "^4.2.2",
"raw-loader": "^4.0.2",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
}
}