-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
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": "20.12.7",
"del-cli": "5.1.0",
"env-cmd": "10.1.0",
"nodemon": "3.1.0",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"vitest": "1.5.3",
"xo": "0.58.0"
},
"dependencies": {
"@prisma/client": "5.13.0",
"@slack/bolt": "3.18.0",
"@slack/web-api": "7.0.4",
"@stayradiated/error-boundary": "4.2.1",
"cilly": "1.0.25",
"date-fns": "3.6.0",
"date-fns-tz": "3.1.3",
"mem": "9.0.2",
"openai": "4.40.0",
"p-queue": "8.0.1",
"prisma": "5.13.0",
"regex-parser": "2.3.0",
"zod": "3.23.5"
},
"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
}
}