-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.03 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
54
55
56
57
58
59
60
61
{
"name": "@diakem/dexcom-follower-to-nightscout-bridge",
"version": "0.1.0",
"description": "Real-time data bridge between dexcom's sharing service and nightscout",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"ts:type-check": "tsc --noEmit --skipLibCheck",
"ts:type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"start": "npm run build:js && ./cli",
"debug": "babel-watch --inspect 0.0.0.0:9229 --extensions \".ts\" src/index.ts",
"lint": "eslint --fix --ext .ts ./src",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(ts|json)\"",
"prepare": "husky install",
"release": "release-it"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@release-it/conventional-changelog": "^4.3.0",
"@types/node-schedule": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-watch": "^7.7.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"release-it": "^14.13.1",
"typescript": "^3.9.10"
},
"author": {
"name": "Selcuk Kekec",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@diakem/dexcom-api-client": "^0.3.0",
"axios": "^0.27.2",
"commander": "^9.2.0"
}
}