-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "rzrbs-vacancy-bot",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "nodemon --signal SIGTERM src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"pre-commit": "npm run prettier-check && npm run lint && tsc --noEmit",
"pre-push": "npm run prettier-check && lint-staged && tsc --noEmit && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razrabs-media/rzrbs-vacancy-bot.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/razrabs-media/rzrbs-vacancy-bot/issues"
},
"homepage": "https://github.com/razrabs-media/rzrbs-vacancy-bot#readme",
"lint-staged": {
"*.ts": "eslint . --ext .ts"
},
"dependencies": {
"dotenv": "^16.0.3",
"openai": "^3.3.0",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.0",
"telegraf": "^4.12.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.3",
"@types/sequelize": "^4.28.15",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}