forked from marlon360/rki-covid-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "rki-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/server.js",
"build": "tsc && npm run docs:build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/sharp": "^0.26.1",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"@marlon360/express-queue": "^1.0.3",
"express-redis-cache": "^1.1.3",
"pm2": "^4.5.1",
"sharp": "^0.27.0",
"svgson": "^4.1.0",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.17",
"prettier": "2.2.1",
"typescript": "^4.1.3",
"vuepress": "^1.7.1"
}
}