-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "pointdpal",
"version": "2.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"lint:ci": "eslint .",
"lint:commit": "commitlint --edit",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"lint": "eslint .",
"migrate": "do the thing",
"start:dev": "tsx watch app.ts",
"start": "tsx app.ts",
"test": "tsx --import ./test/setup-env.ts --test --experimental-test-coverage **/*.test.ts",
"prepare": "husky || true"
},
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.2.0",
"@slack/web-api": "^7.9.1",
"@types/pg": "^8.11.11",
"adze": "^2.2.5",
"clark": "0.0.6",
"convict": "^6.2.4",
"cron": "^4.1.3",
"date-fns": "^4.1.0",
"image-charts": "^6.1.19",
"lodash.map": "^4.6.0",
"lodash.samplesize": "^4.2.0",
"lodash.take": "^4.1.1",
"newrelic": "^12.11.3",
"node-flyway": "^0.0.12",
"pg": "^8.13.1",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.2.2",
"slack-block-builder": "^2.8.0",
"token-buddy": "^1.0.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@slack/types": "^2.14.0",
"@types/convict": "^6.1.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.15.19",
"@types/pluralize": "^0.0.33",
"concurrently": "^9.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "3.4.2",
"typescript-eslint": "^8.23.0"
}
}