-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 794 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 794 Bytes
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
{
"name": "berlin-buergeramt-bot",
"version": "1.0.0",
"description": "A bot notify me when an buergeramt appointment is available.",
"main": "src/index.js",
"scripts": {
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"author": "similicious",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0",
"dotenv": "^16.4.7",
"got": "^14.4.6",
"prettier": "3.5.1",
"toad-scheduler": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.13.4",
"jest": "^29.7.0",
"nodemon": "^3.1.9"
},
"type": "module",
"engines": {
"node": ">=20.0.0"
}
}