-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.39 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
{
"name": "cowin-notify-server",
"version": "0.1.0",
"description": "Notify on cowin slot availablity",
"main": ".build/server.js",
"scripts": {
"prepare": "husky install",
"lint": "node_modules/.bin/eslint --ext .ts",
"build": "tsc",
"prestart": "npm run lint & npm run build",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' server.ts",
"start": "node .build/server.js",
"build:image": "docker build -t cowin-notify-server .",
"image:tag": "docker image tag cowin-notify-server:latest shekharwagh/cowin-notify-server:latest",
"image:push": "docker push shekharwagh/cowin-notify-server:latest",
"image:cleanup-image": "docker image rm shekharwagh/cowin-notify-server:latest",
"docker:publish": "npm run build:image && npm run image:tag && npm run image:push && npm run image:cleanup-image",
"heroku:push-image": "heroku container:push web -a cowin-notify-server",
"heroku:release-image": "heroku container:release web -a cowin-notify-server",
"heroku:deploy": "npm run heroku:push-image && npm run heroku:release-image"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shekharnwagh/cowin-notify-server.git"
},
"author": "Shekhar Wagh",
"license": "ISC",
"bugs": {
"url": "https://github.com/shekharnwagh/cowin-notify-server/issues"
},
"homepage": "https://github.com/shekharnwagh/cowin-notify-server#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^9.1.1"
},
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^15.3.0",
"@types/node-cron": "^2.0.3",
"@types/verror": "^1.10.4",
"axios": "^0.21.1",
"express": "^4.17.1",
"fast-safe-stringify": "^2.0.7",
"moment-timezone": "^0.5.33",
"node-cron": "^3.0.0",
"typescript": "^4.2.4",
"verror": "^1.10.0",
"winston": "^3.3.3"
}
}