-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "fhir_front",
"version": "0.1.0",
"private": true,
"scripts": {
"check": "npm run test && npm run lint && npm run prettier",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"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-javascript": "^6.0.1",
"@codemirror/lang-json": "^6.0.0",
"@fhir-typescript/r4-core": "0.0.12-beta.11",
"@mantine/core": "^4.2.12",
"@mantine/dates": "^4.2.12",
"@mantine/hooks": "^4.2.12",
"@mantine/modals": "^4.2.12",
"@mantine/next": "^4.2.12",
"@mantine/notifications": "^4.2.12",
"@mantine/prism": "^4.2.12",
"@testing-library/user-event": "^14.2.1",
"@uiw/react-codemirror": "^4.9.4",
"dayjs": "^1.11.4",
"luxon": "^3.2.1",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"recoil": "^0.7.4",
"tabler-icons-react": "^1.52.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/fhir": "0.0.34",
"@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",
"@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",
"typescript": "4.6.4"
}
}