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 1
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "osrs-tracker-api",
"version": "0.3.3",
"private": true,
"author": "Freek Mencke",
"homepage": "https://twitter.com/FreekMencke",
"repository": {
"type": "git",
"url": "https://github.com/osrs-tracker/osrs-tracker-api"
},
"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-api:dev .",
"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": {
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"express-prom-bundle": "^5.1.5",
"helmet": "3.18.0",
"mysql": "2.17.1",
"node-fetch": "2.6.0",
"prom-client": "^11.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/helmet": "^0.0.43",
"@types/mysql": "^2.15.6",
"@types/node": "^10.14.8",
"@types/node-fetch": "^2.3.5",
"clean-webpack-plugin": "^3.0.0",
"nodemon-webpack-plugin": "^4.0.8",
"terser-webpack-plugin": "^1.3.0",
"ts-loader": "^6.0.2",
"tslint": "^5.17.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3"
}
}