-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.07 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
76
{
"name": "homer",
"version": "1.0.0",
"license": "MIT",
"main": "dist/src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"dev": "concurrently --kill-others 'pnpm build -w' 'wait-on dist/src/index.js && nodemon --watch dist dist/src/index.js'",
"lint": "eslint .",
"pre-commit": "exec-staged",
"prepare": "node .husky/install.mjs",
"start": "node dist/src/index.js",
"start-env": "node --env-file=.env dist/src/index.js",
"test": "jest --runInBand --forceExit",
"migrate": "node --env-file=.env dist/src/migrate.js up",
"migrate:down": "node --env-file=.env dist/src/migrate.js down",
"migrate:status": "node --env-file=.env dist/src/migrate.js status"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=24",
"pnpm": ">=10.23.0"
},
"dependencies": {
"@slack/web-api": "7.12.0",
"ajv": "^8.18.0",
"dayjs": "1.11.19",
"dd-trace": "5.79.0",
"dotenv": "17.2.3",
"express": "5.1.0",
"helmet": "8.1.0",
"pg": "8.16.3",
"pg-hstore": "2.3.4",
"pino": "10.1.0",
"sequelize": "6.37.7",
"slackify-markdown": "4.5.0",
"source-map-support": "0.5.21",
"tsconfig-paths": "4.2.0",
"umzug": "3.8.2"
},
"pnpm": {
"overrides": {
"dottie": "2.0.7"
}
},
"devDependencies": {
"@josselinbuils/exec-staged": "1.0.2",
"@slack/types": "^2.20.0",
"@types/express": "5.0.5",
"@types/jest": "30.0.0",
"@types/node": "24.10.1",
"@types/pg": "8.16.0",
"@types/supertest": "^6.0.3",
"concurrently": "9.2.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "2.32.0",
"globals": "^16.5.0",
"husky": "9.1.7",
"jest": "30.2.0",
"nodemon": "3.1.11",
"pino-pretty": "13.1.2",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"supertest": "^7.2.2",
"ts-jest": "29.4.5",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.1",
"wait-on": "9.0.3"
}
}