-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "weather-card",
"version": "1.0.0",
"description": "An API for providing weather cards",
"main": "build/index.js",
"scripts": {
"start": "node .",
"build": "vault-config && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Thomas Burnett-Taylor",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"boom": "^6.0.0",
"canvas": "^2.3.1",
"hapi": "^16.6.2",
"inert": "^4.2.1",
"jimp": "^0.2.28",
"joi": "^17.6.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"moment-timezone": "^0.5.34",
"node-fetch": "2",
"redis": "^4.0.6",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"suncalc": "^1.9.0",
"uuid": "^8.3.2",
"vault-config": "https://github.com/tmfksoft/vault-config"
},
"devDependencies": {
"@types/hapi__boom": "^9.0.1",
"@types/hapi__hapi": "^20.0.10",
"@types/hapi__inert": "^5.2.3",
"@types/node": "^17.0.29",
"@types/suncalc": "^1.8.1",
"@types/uuid": "^8.3.4",
"typescript": "^4.6.3"
}
}