-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@runn/handover",
"version": "1.0.0",
"description": "Automate slack handovers",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"tidy": "xo --fix",
"tidy:check": "xo",
"test": "TZ=UTC env-cmd -f .env.test -- vitest --watch=false",
"build": "prisma generate && tsc",
"start": "node ./dist/index.js",
"dev": "nodemon -I --exec node --experimental-specifier-resolution=node --loader ts-node/esm ./src/index.ts",
"prisma": "prisma",
"prisma:test": "env-cmd -f .env.test -- prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Runn-Fast/handover.git"
},
"keywords": [
"handover",
"slack",
"standup"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Runn-Fast/handover/issues"
},
"homepage": "https://github.com/Runn-Fast/handover#readme",
"devDependencies": {
"@types/node": "24.0.0",
"del-cli": "6.0.0",
"env-cmd": "10.1.0",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"vitest": "3.2.3",
"xo": "1.1.0"
},
"dependencies": {
"@prisma/client": "6.9.0",
"@slack/bolt": "4.4.0",
"@slack/web-api": "7.9.2",
"@stayradiated/error-boundary": "4.3.0",
"cilly": "1.0.25",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"mem": "10.0.0",
"openai": "5.3.0",
"p-queue": "8.1.0",
"prisma": "6.9.0",
"regex-parser": "2.3.1",
"zod": "3.25.61"
},
"xo": {
"space": true,
"semicolon": false,
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": "off",
"no-empty-pattern": "off"
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
}