-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.24 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
{
"name": "wapp-flow",
"version": "1.0.0",
"description": "WhatsApp Scheduler PWA",
"main": "dist/src/server.js",
"workspaces": [
"client"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"test": "vitest run",
"test:logs": "cross-env LOGS=true vitest run",
"dev:server": "tsx watch src/server.ts",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build:client && npm run build:server",
"build:client": "npm run build --workspace=client",
"build:server": "tsc -p tsconfig.json",
"deploy:update": "npx -y tsx src/deploy/update.ts",
"start": "node dist/src/server.js",
"start:pm2": "pm2 start ecosystem.config.cjs",
"stop:pm2": "pm2 stop wapp-flow",
"restart:pm2": "pm2 restart wapp-flow",
"logs:pm2": "pm2 logs wapp-flow",
"lint": "concurrently \"prettier --check .\" \"npm run typecheck:server\" \"npm run typecheck:client\"",
"typecheck:server": "tsc --noEmit",
"typecheck:client": "tsc --noEmit -p client",
"format": "prettier --write .",
"prepare": "husky",
"lint-staged": "lint-staged",
"win:startup": "npm run start:pm2 && concurrently \"cloudflared tunnel run wappflow\" \"npm run logs:pm2\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.3",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"concurrently": "^9.1.0",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.3.0",
"supertest": "^7.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
},
"dependencies": {
"better-sqlite3": "^11.6.0",
"dayjs": "^1.11.19",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-cron": "^3.0.3",
"playwright": "^1.49.1",
"pm2": "^5.3.0",
"sqlite-gui-node": "^1.2.0",
"web-push": "^3.6.7",
"wouter": "^3.3.5",
"ws": "^8.19.0",
"zod": "^4.3.5"
}
}