This repository has been archived by the owner on Dec 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "osrs-tracker-cron",
"version": "0.4.0-next.0",
"author": "Freek Mencke",
"homepage": "https://twitter.com/FreekMencke",
"repository": {
"type": "git",
"url": "https://github.com/FreekMencke/osrs-tracker-cron-next"
},
"license": "MIT",
"scripts": {
"start": "webpack --progress --env.development --env.nodemon",
"start:prod": "webpack --progress --env.nodemon",
"build:prod": "webpack --progress",
"build:ci": "webpack",
"build:docker": "docker build --rm -t toxsickcoder/osrs-tracker-cron:latest .",
"deploy:docker": "sh ./scripts/deploy.sh",
"analyse:dev": "webpack --progress --env.development --env.analyse && start dist/report.html",
"analyse:prod": "webpack --progress --env.analyse && start dist/report.html",
"lint": "tslint --project ."
},
"dependencies": {
"@types/cron": "^1.7.1",
"agenda": "^2.1.0",
"axios": "^0.19.0",
"class-transformer": "^0.2.3",
"core-js": "^3.2.1",
"cron": "^1.7.2",
"express": "^4.17.1",
"mongodb": "^3.3.2",
"object-hash": "^2.0.0",
"prom-client": "^11.5.3",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/agenda": "^2.0.6",
"@types/express": "^4.17.1",
"@types/mongodb": "^3.3.6",
"@types/node": "^10.14.21",
"@types/object-hash": "^1.3.0",
"@types/shortid": "0.0.29",
"clean-webpack-plugin": "^3.0.0",
"nodemon-webpack-plugin": "^4.1.1",
"ts-loader": "^6.2.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.4",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9"
}
}