-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·41 lines (41 loc) · 1.11 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
{
"name": "unifiedweather",
"version": "1.0.0",
"description": "Weather aggregator",
"type": "module",
"scripts": {
"clean": "rm -rf ./build",
"test": "jest",
"build": "tsc --build && ts-add-js-extension --dir=build",
"server": "node ./build/src/index.js",
"deploy": "npm run clean && npm run build && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staplespeter/UnifiedWeather.git"
},
"author": "Peter Staples",
"license": "ISC",
"bugs": {
"url": "https://github.com/staplespeter/UnifiedWeather/issues"
},
"homepage": "https://github.com/staplespeter/UnifiedWeather#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"jest": "^29.6.1",
"ts-add-js-extension": "^1.5.4",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"interpolate-json": "^3.0.0",
"just-template": "^2.2.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
}
}