-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
72
73
74
{
"name": "approxima-chatbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/USPCodeLabSanca/approxima-chatbot-node"
},
"scripts": {
"start": "tsc && node -r dotenv/config dist/index.js",
"dev": "ts-node-dev -r dotenv/config src/index.ts",
"prepare": "tsc",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"rank": "tsc && node dist/tasks/rank.js",
"encrypt": "tsc && node -r dotenv/config dist/tasks/encrypt.js",
"decrypt": "tsc && node -r dotenv/config dist/tasks/decrypt.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "CodeLab",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "bash scripts/reject-by-pattern.sh && tsc && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": "12.X"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.6.3",
"@types/node-telegram-bot-api": "^0.50.2",
"@types/uuid": "^8.3.0",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.1",
"node-telegram-bot-api": "^0.50.0",
"remove-accents": "^0.4.2",
"source-map-support": "^0.5.19",
"string-similarity": "^4.0.2",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.8.1",
"eslint-config-google": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.5.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}