-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "lunch-roulette",
"version": "1.0.0",
"description": "A Slack app that randomly picks a lunch spot within walking distance.",
"main": "api/slack/lunchr.ts",
"scripts": {
"build": "tsc",
"start": "vercel dev",
"deploy": "vercel --prod",
"format:check": "prettier ./api --check",
"format:write": "prettier ./api --write",
"lint:check": "eslint ./api",
"lint:fix": "eslint ./api --fix"
},
"author": "Chris Samuel",
"license": "MIT",
"dependencies": {
"@slack/web-api": "7.8.0",
"@vercel/node": "5.1.14",
"axios": "1.8.2",
"mongodb": "6.14.2"
},
"devDependencies": {
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "22.13.10",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "3.8.7",
"eslint-plugin-import": "2.31.0",
"jiti": "2.4.2",
"prettier": "3.5.3",
"typescript": "5.7.3",
"typescript-eslint": "8.26.1"
},
"packageManager": "[email protected]+sha512.bb45e34d50a9a76e858a95837301bfb6bd6d35aea2c5d52094fa497a467c43f5c440103ce2511e9e0a2f89c3d6071baac3358fc68ac6fb75e2ceb3d2736065e6"
}