-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"name": "manpro-bot",
"version": "1.0.0",
"description": "Bot that notify manpro of new incoming project",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "node build/app.js",
"start_with_logging": "node build/app.js | pino-logtail",
"dev": "nodemon",
"lint": "yarn lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "yarn lint:eslint src/",
"lint:fix": "yarn lint:js --fix"
},
"author": "Yoel Susanto",
"license": "GPL-3.0-or-later",
"dependencies": {
"@codevco/pino-logtail": "^1.0.7",
"@line/bot-sdk": "^7.5.2",
"@types/express-serve-static-core": "^4.17.31",
"@types/pino-http": "^5.8.1",
"@types/serve-static": "^1.15.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"moment": "^2.29.4",
"mongoose": "6.6.1",
"pino": "^8.6.0",
"pino-datadog": "^2.0.2",
"pino-http": "^8.2.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tslint": "^5.20.1"
}
}