-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 867 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
{
"name": "tgtg-notifier",
"version": "1.0.0",
"description": "Check TooGoodToGo for available items.",
"main": "index.js",
"type":"module",
"scripts": {
"dev": "nodemon",
"start": "node -r dotenv/config dist/app.js",
"build": "node build.cjs",
"tsc": "tsc -noEmit"
},
"author": "Fabian Streicher",
"license": "ISC",
"dependencies": {
"axios": "^1.3.2",
"googleapis": "^110.0.0",
"jsonc-parser": "^3.2.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1"
},
"devDependencies": {
"@types/node": "^18.11.19",
"@types/node-cron": "^3.0.7",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.5",
"eslint": "^8.33.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
}
}