-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.44 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
{
"name": "@ampath/esm-client-dashboard",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "openmrs develop --sources 'packages/esm-*-app/'",
"build": "lerna run build --stream",
"test": "jest --config jest.config.json --verbose false --passWithNoTests",
"test-watch": "jest --watch --config jest.config.json",
"coverage": "yarn test --coverage",
"extract-translations": "lerna run extract-translations -- --config ../../tools/i18next-parser.config.js",
"prettier": "prettier --config prettier.config.js --write \"packages/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lerna run lint && yarn test && lerna run typescript && yarn run extract-translations"
}
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.12.13",
"@openmrs/esm-framework": "next",
"@testing-library/dom": "^7.20.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/carbon-components-react": "^7.10.9",
"@types/jest": "^25.2.3",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"concurrently": "^5.3.0",
"dayjs": "^1.8.36",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^3.1.0",
"i18next": "^19.7.0",
"i18next-parser": "^3.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"lerna": "^3.20.2",
"openmrs": "next",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-i18next": "^11.0.0",
"react-router-dom": "^5.0.0",
"rxjs": "^6.6.3",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"typescript": "^4.0.3"
},
"dependencies": {
"swr": "^1.0.1"
}
}