generated from StanfordBDHG/NextJSTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.82 KB
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": "@stanfordspezi/spezi-firebase",
"version": "0.1.3",
"license": "MIT",
"description": "Stanford Biodesign Digital Health Spezi Firebase Packages",
"keywords": [
"Stanford",
"Firebase",
"Biodesign"
],
"repository": {
"type": "git",
"url": "git+https://github.com/StanfordSpezi/spezi-firebase"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "npm run build --workspaces",
"build": "npm run build --workspaces",
"build:fhir": "npm run build -w @stanfordspezi/spezi-firebase-fhir",
"build:utils": "npm run build -w @stanfordspezi/spezi-firebase-utils",
"build:cloud-messaging": "npm run build -w @stanfordspezi/spezi-firebase-cloud-messaging",
"lint": "eslint .",
"lint:fix": "eslint . --fix & prettier --write .",
"lint:ci": "npm run prebuild && eslint --output-file eslint_report.json --format json .",
"lint:strict": "npm run prebuild && eslint . --max-warnings=0",
"pretest": "npm run build",
"test": "npm run test --workspaces",
"test:fhir": "npm run test -w @stanfordspezi/spezi-firebase-fhir",
"test:utils": "npm run test -w @stanfordspezi/spezi-firebase-utils",
"test:cloud-messaging": "npm run test -w @stanfordspezi/spezi-firebase-cloud-messaging",
"docs": "typedoc",
"docs:ci": "typedoc --out ./out/docs --githubPages true"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-config-prettier": "^9",
"eslint-plugin-import": "^2",
"eslint-plugin-jsdoc": "^61.2.0",
"eslint-plugin-prettier": "^5",
"expect-type": "^1.3.0",
"prettier": "^3",
"typedoc": "^0.25",
"typescript": "^5"
},
"peerDependencies": {
"@types/fhir": "^0.0.41",
"zod": "^4.0.5"
}
}