-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.78 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "spt",
"version": "0.0.2",
"license": "Apache-2.0",
"scripts": {
"start": "npm-run-all --parallel startFrontend startBackend",
"startProd": "WATCH=false npm-run-all -s startFrontend startBackend",
"startBackend": "nodemon ./bin/www",
"startFrontend": "webpack",
"build": "WATCH=false FRONTEND_ONLY=true webpack",
"debug": "node --inspect-brk ./bin/www",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint './src/**/*.{js,jsx}'",
"lint:fix": "eslint './src/**/*.{js,jsx}' --fix"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.5",
"css-loader": "^5.0.2",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"style-loader": "^2.0.0",
"supertest": "^6.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.129",
"@mui/material": "^5.13.4",
"@mui/system": "^5.15.15",
"@welldone-software/why-did-you-render": "^8.0.1",
"axios": "^0.21.1",
"base64url": "^3.0.1",
"csv-parse": "^5.4.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"eslint": "^8.45.0",
"express": "^4.17.1",
"fhir-visualizers": "0.0.5",
"fhirpath": "^3.13.3",
"glob": "^7.1.7",
"http-status-codes": "^2.1.4",
"leaflet": "^1.6.0",
"lokijs": "^1.5.11",
"moment": "^2.29.1",
"morgan": "~1.9.1",
"node-jose": "^2.0.0",
"nodemon": "^2.0.7",
"prop-types": "^15.7.2",
"query-string": "^6.13.8",
"react": "^18.0.0",
"react-accessible-accordion": "^5.0.0",
"react-code-blocks": "^0.1.0",
"react-data-grid": "^7.0.0-beta.44",
"react-dom": "^18.0.0",
"react-dropzone": "^11.3.2",
"react-json-editor-ajrm": "^2.5.13",
"react-json-view": "^1.21.3",
"react-leaflet": "^4.2.1",
"react-query": "^3.12.2",
"react-router-dom": "^6.14.2",
"react-router-hash-link": "^2.4.3",
"react-select": "^5.8.0",
"react-transition-group": "^4.3.0",
"use-local-storage": "^3.0.0",
"uuid": "^8.3.2"
},
"overrides": {
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}