This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.54 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
{
"name": "@openmrs/esm-devtools-app",
"description": "Dev tools for frontend devs using OpenMRS",
"main": "dist/openmrs-esm-devtools.js",
"version": "2.0.0",
"license": "MPL-2.0",
"scripts": {
"start": "webpack-dev-server",
"lint": "eslint src --ext js,jsx,ts,tsx",
"test": "jest --config jest.json",
"watch-tests": "jest --config jest.json --watch",
"prettier": "prettier --write **/*",
"typescript": "tsc",
"prepublishOnly": "npm run build",
"build": "webpack --mode production"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"directories": {
"lib": "dist"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently 'npm:test' 'npm:typescript' 'npm:lint'"
}
},
"types": "src/openmrs-esm-devtools.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-devtools.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@openmrs/esm-api": "^2.0.0",
"@openmrs/react-root-decorator": "^3.2.0",
"@reach/tabs": "^0.10.0",
"@types/jest": "^25.2.2",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"browserslist-config-openmrs": "^1.0.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.1.0",
"css-loader": "^3.5.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-ts-react-important-stuff": "^2.0.0",
"eslint-plugin-prettier": "^3.1.3",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"kremling": "^2.0.3",
"lodash-es": "^4.17.15",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"semver": "^7.3.2",
"single-spa-react": "^2.13.0",
"style-loader": "^1.1.3",
"systemjs-webpack-interop": "^2.0.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@openmrs/esm-module-config": "^1.3.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/single-spa-react": "^2.12.0",
"@types/systemjs": "^6.1.0",
"i18next": "^19.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.4"
}
}