-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lounasbotti",
"type": "module",
"version": "1.10.15",
"private": true,
"description": "Slack bot for retrieving lunch menus of local restaurants. Very much WIP and not meant for public use.",
"main": "./dist/server.js",
"engineStrict": false,
"engines": {
"node": ">=22.11.0 <23.0.0"
},
"scripts": {
"start": "node dist/server.js",
"refresh": "tsc --incremental && node dist/server.js",
"proxy": "ngrok start --config ngrok.yml --config ngrok.secrets.yml lounasbotti-dev",
"dev": "nodemon -e ts,json,env --exec \"npm run refresh\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint . --no-fix --max-warnings 0 --rule \"linebreak-style:off\"",
"sentry": "npm run build && sentry-cli releases new %npm_package_version% && sentry-cli sourcemaps upload --release=%npm_package_version% ./dist"
},
"keywords": [
"bot",
"slack",
"lounasbotti"
],
"author": "Jani Haiko",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/ojaha065/lounasbotti.git"
},
"bugs": {
"url": "https://github.com/ojaha065/lounasbotti/issues",
"email": "[email protected]"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@sentry/cli": "^2.28.0",
"@types/node": "^22.2.0",
"@types/node-schedule": "^2.1.6",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.23.0"
},
"dependencies": {
"@sentry/integrations": "^7.100.1",
"@sentry/node": "^8.49.0",
"@slack/bolt": "^4.1.0",
"cheerio": "^1.0.0-rc.12",
"date-holidays": "^3.23.8",
"dotenv": "^16.4.2",
"html-entities": "^2.5.2",
"mongoose": "^8.9.5",
"node-schedule": "^2.1.1",
"slack-block-builder": "^2.8.0"
}
}