-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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": "lametric-nightscout-proxy",
"version": "0.0.0-development",
"description": "Proxy web server used to transform Nightscout data to the LaMetric app",
"main": "index.js",
"keywords": [],
"repository": "git@github.com:aolde/lametric-nightscout-proxy.git",
"author": "Andreas Oldeskog <142856+aolde@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"start:dev": "nodemon dist/server.js",
"dev": "tsc --watch",
"build": "tsc",
"release": "semantic-release"
},
"dependencies": {
"fastify": "^4.8.1",
"fastify-graceful-shutdown": "^3.4.0",
"got": "^11.8.2",
"logdown": "^3.3.1"
},
"devDependencies": {
"@types/node": "18.8.3",
"nodemon": "^2.0.20",
"semantic-release": "^18.0.0",
"typescript": "^4.8.4"
},
"prettier": {
"semi": true,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5"
},
"release": {
"branches": [
"main"
]
}
}