forked from ManoManoTech/homer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.91 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
{
"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 'yarn build -w' 'wait-on dist/src/index.js && nodemon --watch dist dist/src/index.js'",
"lint": "eslint .",
"pre-commit": "exec-staged",
"prepare": "husky install",
"start": "node dist/src/index.js",
"test": "jest --runInBand --forceExit"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@slack/web-api": "6.8.1",
"dayjs": "1.11.7",
"dd-trace": "3.13.2",
"dotenv": "16.0.3",
"express": "4.18.2",
"helmet": "6.0.1",
"node-fetch": "2.6.9",
"pg": "8.9.0",
"pg-hstore": "2.3.4",
"pino": "8.10.0",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sequelize": "6.28.0",
"slackify-markdown": "4.3.1",
"source-map-support": "0.5.21",
"tsconfig-paths": "4.1.2"
},
"devDependencies": {
"@josselinbuils/exec-staged": "1.0.2",
"@types/express": "4.17.17",
"@types/jest": "29.4.0",
"@types/node": "18.13.0",
"@types/node-fetch": "2.6.2",
"@types/pg": "8.6.6",
"@types/prismjs": "1.26.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/signale": "1.4.4",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"concurrently": "7.6.0",
"eslint": "8.33.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.4.2",
"nodemon": "2.0.20",
"pino-pretty": "9.2.0",
"prettier": "2.8.4",
"rimraf": "4.1.2",
"ts-jest": "29.0.5",
"typescript": "4.9.5",
"wait-on": "7.0.1"
}
}