-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fqm-testify",
"version": "0.1.0",
"private": true,
"scripts": {
"check": "npm run test && npm run lint && npm run prettier",
"dev": "next dev",
"build": "next build",
"build:dates": "ts-node scripts/parsePrimaryDatePath.ts && prettier --write util/primaryDatePaths.ts --loglevel silent",
"build:codes": "ts-node scripts/parseCodePath.ts && prettier --write util/codePaths.ts --loglevel silent",
"build:names": "ts-node scripts/generatePatientNames.ts && prettier --write data/names.ts --loglevel silent",
"build:lookups": "npm run build:codes && npm run build:names && npm run build:dates",
"start": "npx serve@latest out",
"lint": "next lint && tsc --noEmit",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx,css}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,css}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@codemirror/lang-json": "^0.20.0",
"@codemirror/lint": "^0.20.3",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@mantine/core": "^6.0.11",
"@mantine/dates": "^6.0.11",
"@mantine/dropzone": "^6.0.11",
"@mantine/hooks": "^6.0.11",
"@mantine/next": "^6.0.11",
"@mantine/notifications": "^6.0.11",
"@tabler/icons": "^1.105.0",
"@uiw/react-codemirror": "^4.7.0",
"dayjs": "^1.11.7",
"fhirpath": "^2.14.6",
"file-saver": "^2.0.5",
"fqm-execution": "^1.6.0",
"immer": "^9.0.14",
"jszip": "^3.10.0",
"luxon": "^2.5.2",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.3-alpha.2",
"tabler-icons-react": "^1.55.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/fhir": "0.0.34",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.3.2",
"@types/node": "17.0.33",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/uuid": "^8.3.4",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typescript": "4.6.4",
"xml2js": "^0.5.0"
}
}