forked from beda-software/aidbox-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
61
62
63
64
{
"name": "@beda.software/fhir-react",
"version": "1.11.1",
"repository": {
"type": "git",
"url": "https://github.com/beda-software/fhir-react"
},
"keywords": [
"fhir"
],
"scripts": {
"build": "rollup --config",
"coverage": "jest --config=./jest.config.json --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --config=./jest.config.json",
"test:watch": "jest --config=./jest.config.json --watch",
"prepare": "husky install",
"typecheck": "tsc -p tsconfig.base.json"
},
"dependencies": {
"@beda.software/remote-data": "^1.1.4",
"lodash": "^4.17.21",
"moment": "^2.29.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/fhir": "^0.0.40",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"coveralls": "^3.0.9",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"react": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"optionalDependencies": {
"lint-staged": "^15.2.0"
},
"main": "dist/cjs/bundle.js",
"module": "dist/esm/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}