-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 996 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
{
"version": "1.0.0",
"description": "Lunch assistant for the office",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "func start",
"test": "tsc && node ./dist/test.js",
"invoke": "curl https://lunch-assistant.azurewebsites.net/api/slack",
"deploy": "func azure functionapp publish lunch-premium",
"promptOpenAi": "node ./dist/openai.js"
},
"author": "Vincit Kuopio",
"license": "MIT",
"dependencies": {
"@azure/functions": "^4.0.1",
"axios": "^1.5.1",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"he": "^1.2.0",
"node-fetch": "^3.3.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/he": "^1.2.1",
"@types/node": "^20.8.3",
"@types/xml2js": "^0.4.12",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 18.x",
"npm": ">= 8.x"
}
}