-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"name": "case-slack",
"version": "1.0.0",
"description": "A lightweight Slack app for incident management that organizes the flow from events to investigations to incidents",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"test:setup": "dotenv -e .env.test -o -- prisma migrate reset --force --skip-seed",
"test": "dotenv -e .env.test -o -- jest --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agrieser/case.git"
},
"keywords": ["slack", "incident-management", "investigations", "slack-app", "typescript"],
"author": "Case Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/agrieser/case/issues"
},
"homepage": "https://github.com/agrieser/case#readme",
"dependencies": {
"@prisma/client": "^6.12.0",
"@slack/bolt": "^4.4.0",
"@types/node": "^24.1.0",
"axios": "^1.7.2",
"dotenv": "^17.2.1",
"prisma": "^6.12.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"dotenv-cli": "^9.0.0",
"eslint": "^9.32.0",
"jest": "^30.0.5",
"jest-mock-extended": "^4.0.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0"
}
}