-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.88 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
{
"name": "@diakem/dexcom-api-client",
"version": "0.3.1",
"description": "Dexcom API client to communicate and retrieve data from the sharing service.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"ts:type-check": "tsc --noEmit",
"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": "babel-watch --extensions \".ts\" src/index.ts",
"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": "^5.0.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": "^15.1.1",
"typescript": "^3.9.10"
},
"author": "Selcuk Kekec",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"node-schedule": "^2.1.0"
}
}