-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "batiyoun-monorepo",
"version": "0.2.0",
"private": true,
"description": "End-to-end encrypted Progressive Web App for private messaging",
"author": "Kush Kumar <kushkumar.officialsoftwaredev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kushkumarkashyap7280/batiyoun.git"
},
"homepage": "https://batiyoun.vercel.app",
"bugs": {
"url": "https://github.com/kushkumarkashyap7280/batiyoun/issues"
},
"keywords": [
"chat",
"messaging",
"pwa",
"end-to-end-encryption",
"privacy",
"nextjs",
"websocket",
"real-time"
],
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "npm run dev -w client",
"dev:server": "npm run dev -w server",
"build": "npm run build -w client && npm run build -w server",
"build:client": "npm run build -w client",
"build:server": "npm run build -w server",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,md}\""
},
"devDependencies": {
"@types/node": "^25.2.0",
"concurrently": "^9.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"jsonwebtoken": "^9.0.3"
}
}