-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "leetcode-slack-bot",
"version": "1.0.0",
"description": "A Slack bot that posts LeetCode questions!",
"main": "src/index.ts",
"type": "module",
"engines": {
"node": "~19.8.1"
},
"scripts": {
"dev": "node --experimental-modules --loader ts-node/esm --max_old_space_size=460 --no-warnings --optimize_for_size src/index.ts | pino-pretty",
"build": "rimraf ./dist && tsc -p .",
"build:watch": "tsc -w -p .",
"init": "npm install && npm run-script build",
"start": "node --experimental-modules --max_old_space_size=460 --no-warnings --optimize_for_size dist/src/index.js | pino-pretty"
},
"author": "jcsison",
"license": "ISC",
"dependencies": {
"@slack/bolt": "^3.11.0",
"@types/lodash": "^4.14.182",
"@types/node-schedule": "^1.3.2",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"firebase-admin": "^11.5.0",
"google-auth-library": "^8.0.2",
"graphql-request": "^4.2.0",
"lodash": "^4.17.21",
"node-schedule": "^2.1.0",
"openai": "^3.2.1",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"serialize-error": "^10.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-require-extensions": "^0.1.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^4.4.1",
"standard": "^16.0.4",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint src/**/*.{ts,tsx}"
]
}
}