-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 952 Bytes
/
package.json
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
{
"name": "tgtg-notifier",
"description": "Monitors your favorite TGTG Store for newly available items",
"author": "Nyrrell",
"version": "1.1.15",
"type": "module",
"main": "src/app.js",
"license": "MIT",
"scripts": {
"dev": "node --loader ts-node/esm src/app.ts",
"dev:watch": "node --watch --loader ts-node/esm src/app.ts",
"build": "rimraf dist && tsc",
"start": "node dist/app.js",
"format": "prettier --write ./src"
},
"keywords": [
"Too Good To Go",
"Notifier"
],
"devDependencies": {
"@types/node": "^18.11.0",
"prettier": "2.8.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@keyv/sqlite": "^3.6.2",
"class-validator": "^0.14.1",
"croner": "^6.0.1",
"keyv": "^4.5.0",
"undici": "^6.19.7",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"engines": {
"node": ">=18.17"
}
}