-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 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
55
56
57
58
59
60
{
"name": "sdc-qrf",
"license": "MIT",
"version": "1.1.0-alpha.3",
"scripts": {
"test": "vitest --watch=false",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepare": "husky || true"
},
"dependencies": {
"classnames": "^2.5.1",
"fhirpath": "^3.18.0",
"lodash": "^4.17.21",
"query-string": "^7.1.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"axios": "^1.8.4",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@beda.software/remote-data": "^1.1.4",
"@beda.software/aidbox-types": "file:contrib/aidbox-types",
"@eslint/js": "^9.23.0",
"@testing-library/react": "^14.0.0",
"@types/fhir": "^0.0.41",
"@types/lodash": "^4.17.16",
"@types/react": "^18",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^3.0.9",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"jsdom": "^22.1.0",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.8.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.0.9"
},
"peerDependencies": {
"react": "18.x",
"axios": "^1.0.0",
"@beda.software/remote-data": "^1.1.4"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
}