forked from openmrs/openmrs-ocl-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.55 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ocl-client",
"version": "0.1.0",
"private": true,
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm:lint"
}
},
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.1"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.50",
"@mui/material": "^5.0.4",
"@mui/styles": "^5.0.1",
"@reduxjs/toolkit": "^1.5.0",
"@types/lodash": "^4.14.165",
"@types/qs": "^6.9.3",
"@types/react": "17.0.4",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-csv": "^1.1.1",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.3",
"@types/react-select": "^3.0.26",
"@types/uuid": "^3.4.7",
"@types/yup": "^0.28.0",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"dayjs": "^1.9.6",
"formik": "^2.2.6",
"formik-mui": "^4.0.0-alpha.3",
"lodash": "^4.17.15",
"qs": "^6.9.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.0.0",
"react-copy-to-clipboard": "^5.0.2",
"react-csv": "^2.0.3",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3",
"react-select": "^3.0.8",
"react-select-async-paginate": "^0.3.10",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sass": "^1.32.8",
"typescript": "^4.2.4",
"url-matcher": "^0.2.2",
"uuid": "^8.3.2",
"web-vitals": "^1.1.1",
"yup": "^0.28.0"
},
"scripts": {
"start": "PORT=8080 react-scripts start",
"build": "react-scripts build",
"lint": "eslint src --ext tsx",
"test": "react-scripts test --testPathPattern='.*/tests/unit/|.*/__test__/'",
"test:integration": "cypress run",
"organisationManagement": "cypress run --spec '**/organisation/*.feature'",
"basicDictionaryManagement": "cypress run --spec '**/dictionary/*.feature','**/concept/*.feature'",
"test:ci": "CI=true react-scripts test -u --testPathPattern='.*/tests/unit/|.*/__test__/' --ci --coverage",
"test:bamboo": "node -v && CI=true react-scripts test --testPathPattern='.*/tests/unit/' --ci --coverage --env=jsdom --testResultsProcessor ./node_modules/jest-junit",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"resetMocks": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^11.2.6",
"@types/cypress-cucumber-preprocessor": "^4.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^12.7.12",
"cypress": "^7.5.0",
"cypress-cucumber-preprocessor": "^4.1.2",
"cypress-wait-until": "^1.7.1",
"eslint-plugin-cypress": "^2.11.2",
"husky": "^6.0.0",
"jest-junit": "^12.0.0",
"nanoid": "^3.1.16",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2",
"react-test-renderer": "^17.0.2",
"ts-loader": "^6.2.1"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"nonGlobalStepBaseDir": "cypress/support/step_definitions"
}
}