-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
74
75
76
77
78
{
"name": "cosri_patient_search",
"version": "1.0.0",
"description": "Patient search interface for COSRI",
"license": "BSD-Source-Code",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"watch": "webpack -debug --config webpack.config.js --watch --progress --mode development",
"lint:js": "eslint ./*.js ./patientsearch/src/js/**/*.js; exit 0",
"lint:js:fix": "eslint ./*.js ./patientsearch/src/js/**/*.js --fix; exit 0",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "^7.20.7",
"@date-io/date-fns": "^1.3.13",
"@material-table/core": "^5.1.11",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/pickers": "^3.3.10",
"babel-loader": "8.0.5",
"babel-plugin-import": "1.11.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dompurify": "^2.4.3",
"es6-promise": "^4.2.8",
"jsonpath": "^1.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-render-html": "^0.6.0",
"react-text-mask": "^5.5.0",
"styled-components": "^5.3.6",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/runtime-corejs3": "^7.20.7",
"babel-jest": "^25.3.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.27.1",
"css-loader": "^3.4.2",
"dotenv": "^8.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"filemanager-webpack-plugin": "^2.0.5",
"html-webpack-plugin": "^4.5.2",
"jest": "^25.3.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"react-test-renderer": "^16.14.0",
"sass": "^1.57.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}