-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
86 lines (86 loc) · 2.45 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
{
"name": "@openmrs/esm-user-dashboard-widgets",
"version": "1.0.2",
"description": "A repo for creating openmrs microfrontend dashboard widgets",
"main": "dist/openmrs-esm-user-dashboard-widgets.js",
"scripts": {
"start": "webpack-dev-server",
"lint": "eslint src --ext tsx",
"build": "webpack --mode=production",
"typescript": "tsc",
"test": "jest --config jest.config.json",
"prepublishOnly": "npm run build && npm test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm test && npm run typescript"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-user-dashboard-widgets"
},
"keywords": [
"openmrs",
"dashboard",
"widgets"
],
"author": "",
"license": "MIT",
"directories": {
"lib": "dist"
},
"bugs": {
"url": ""
},
"homepage": "https://github.com/openmrs/openmrs-esm-user-dashboard-widgets#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/runtime": "^7.8.3",
"@emotion/babel-preset-css-prop": "^10.0.23",
"@emotion/core": "^10.0.22",
"@testing-library/jest-dom": "^4.2.3",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"date-fns": "^2.8.1",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-important-stuff": "^1.2.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.7.0",
"i18next": "^17.3.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lodash.clonedeep": "^4.5.0",
"mockdate": "^2.0.5",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"react-i18next": "^10.13.2",
"react-table": "^6.10.3",
"react-use": "^12.13.0",
"recharts": "^1.8.5",
"single-spa-react": "^2.10.4",
"style-loader": "^0.23.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-modal": "^3.11.1"
}
}