generated from hi-imcodeman/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.57 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": "cowinator",
"version": "1.0.0",
"main": "build/index.js",
"bin": {
"cowinator": "build/cli/index.js"
},
"repository": "https://github.com/hi-imcodeman/cowinator.git",
"author": "Asraf Ali <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"compile": "webpack",
"docs": "typedoc",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"gpr-setup": "node ./scripts/setup-gpr.js",
"package-upgrade": "yarn upgrade-interactive",
"upgrade-latest": "yarn upgrade --latest"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lunr": "^2.3.3",
"@types/node-cron": "^2.0.3",
"@types/node-notifier": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"ts-jest": "^26.5.0",
"typedoc": "^0.20.23",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"lunr": "^2.3.9",
"messaging-api-telegram": "^1.0.4",
"moment": "^2.29.1",
"node-cron": "^3.0.0",
"node-notifier": "^9.0.1",
"ora": "^5.4.0",
"yargs": "^17.0.1"
},
"keywords": [
"cowin",
"vaccine",
"india",
"covid",
"corona",
"stats",
"slots",
"telegram",
"cli",
"api",
"cowinator"
]
}