-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "oura-cloud-api-client",
"version": "0.0.6",
"description": "The Oura Cloud API Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "yicru",
"license": "ISC",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --ext .ts src",
"format": "run-s format:*",
"format:prettier": "prettier -w .",
"format:eslint": "npm run lint:eslint -- --fix",
"test": "vitest",
"prepare": "npm run build"
},
"dependencies": {
"axios": "^0.24.0"
},
"devDependencies": {
"@types/node": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"vitest": "^0.0.110"
}
}