-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.33 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
{
"name": "dropwatch",
"version": "0.2.0",
"description": "Self-hosted price & availability watcher. Add a product URL, set a target price, get an email when it drops.",
"keywords": [
"price-tracker",
"price-alert",
"self-hosted",
"scraper",
"playwright"
],
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"dropwatch": "bin/dropwatch.js"
},
"files": [
"bin",
"dist",
"!dist/**/*.map",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "concurrently -n server,web -c cyan,magenta \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:web": "vite",
"build": "npm run build:web && npm run build:server",
"build:web": "vite build",
"build:server": "tsc -p tsconfig.server.json && node scripts/copy-assets.mjs",
"start": "node dist/server/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"dependencies": {
"@fastify/static": "^8.0.4",
"better-sqlite3": "^11.7.0",
"fastify": "^5.2.0",
"node-cron": "^3.0.3",
"nodemailer": "^9.0.5",
"playwright": "^1.49.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.1",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^6.0.5",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.10.1",
"tailwindcss": "^4.3.3",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.1",
"vite": "^8.2.1",
"vitest": "^2.1.8"
},
"author": "Prashant Suthar <sutharprashant199722@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/prashant-cr/DropWatch.git"
},
"bugs": {
"url": "https://github.com/prashant-cr/DropWatch/issues"
},
"homepage": "https://github.com/prashant-cr/DropWatch#readme"
}