-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
155 lines (155 loc) · 6.25 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "capture-app",
"homepage": ".",
"version": "101.14.4",
"cacheVersion": "7",
"serverVersion": "38",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"packages/rules-engine"
],
"dependencies": {
"@dhis2/rules-engine-javascript": "101.14.4",
"@dhis2/app-runtime": "^3.9.3",
"@dhis2/d2-i18n": "^1.1.0",
"@dhis2/d2-icons": "^1.0.1",
"@dhis2/d2-ui-app": "^2.0.0",
"@dhis2/d2-ui-org-unit-tree": "^7.3.3",
"@dhis2/d2-ui-rich-text": "^7.4.0",
"@dhis2/d2-ui-sharing-dialog": "^7.3.3",
"@dhis2/ui": "^9.10.1",
"@joakim_sm/react-infinite-calendar": "^2.4.2",
"@material-ui/core": "3.9.4",
"@material-ui/icons": "3",
"@popperjs/core": "^2.11.6",
"@react-leaflet/core": "^1.1.1",
"@redux-offline/redux-offline": "^2.6.0",
"autosuggest-highlight": "^3.3.4",
"classnames": "^2.3.1",
"d2-manifest": "^1.0.0",
"d2-utilizr": "^0.2.15",
"date-fns": "^1.29.0",
"history": "^5.3.0",
"leaflet": "^1.7.1",
"leaflet-draw": "^1.0.4",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"react": "^16.14.0",
"react-addons-update": "^15.6.3",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^16.14.0",
"react-html-parser-ultimate": "^1.0.7",
"react-jss": "^10.9.1",
"react-leaflet": "^2.8.0",
"react-leaflet-draw": "0.19.0",
"react-leaflet-search-unpolyfilled": "^0.1.0",
"react-popper": "^2.2.4",
"react-query": "3",
"react-redux": "^7.2.8",
"react-router-dom": "^5.3.0",
"react-rte": "^0.16.5",
"react-select": "^1.2.1",
"react-transform-tree": "^1.0.35",
"react-virtualized": "^9.22.2",
"react-virtualized-select": "^3.1.3",
"redux": "^4.1.2",
"redux-batched-actions": "^0.5.0",
"redux-logger": "^3.0.6",
"redux-observable": "^2.0.0",
"reselect": "^4.1.7",
"rxjs": "^7.5.5",
"styled-jsx": "^4",
"typeface-roboto": "^0.0.75",
"uuid": "^9.0.0"
},
"scripts": {
"start": "yarn verifyCacheVersion && concurrently --kill-others \"yarn workspaces run build:watch\" \"d2-app-scripts start\"",
"start:forCypress": "yarn workspaces run build && node scripts/startAppForCypress.js",
"build": "yarn verifyCacheVersion && yarn workspaces run build && GENERATE_SOURCEMAP=false d2-app-scripts build && cp ./package.json ./build/app/package.json",
"build:standalone": "yarn workspaces run build && GENERATE_SOURCEMAP=false d2-app-scripts build --standalone",
"test": "yarn workspaces run build && d2-app-scripts test",
"test:debug": "yarn workspaces run build && react-scripts --inspect-brk test --runInBand",
"jsdoc": "NODE_ENV=development jsdoc -c jsdoc-conf.json",
"linter:check": "yarn workspaces run linter:check && yarn workspaces run build && eslint -c .eslintrc . --quiet",
"flow:check": "./node_modules/.bin/flow check ./src",
"flow:addTypes": "flow-typed install",
"cy:open": "export NODE_OPTIONS=--openssl-legacy-provider && concurrently --kill-others \"yarn start:forCypress\" \"wait-on 'http-get://127.0.0.1:3000' && cypress open\"",
"cy:run": "export NODE_OPTIONS=--openssl-legacy-provider && concurrently --kill-others \"yarn start:forCypress\" \"wait-on 'http-get://127.0.0.1:3000' && cypress run\"",
"verifyCacheVersion": "node scripts/verifyCacheVersion.js",
"postinstall": "husky install && node scripts/createSymlinkToInternalPackages.mjs",
"i18n:add": "d2-app-scripts i18n extract && git add ./i18n/",
"clean": "./scripts/clean.sh && yarn workspaces run clean"
},
"devDependencies": {
"@actions/core": "^1.9.1",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-flow-strip-types": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@badeball/cypress-cucumber-preprocessor": "17.2.1",
"@cypress/webpack-preprocessor": "^6.0.0",
"@dhis2/cli-app-scripts": "^10.4.0",
"@dhis2/cli-helpers-engine": "^3.2.1",
"@dhis2/cli-style": "^10.4.1",
"@dhis2/cli-utils-cypress": "^9.0.2",
"@dhis2/cypress-commands": "^10.0.3",
"@dhis2/cypress-plugins": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@vercel/ncc": "^0.34.0",
"babel-plugin-module-resolver": "^5.0.0",
"concurrently": "^8.2.2",
"cypress": "12",
"docdash": "^2.0.2",
"dotenv": "^16.4.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "7.32.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "4.6.2",
"fake-indexeddb": "^4.0.1",
"flow-bin": "^0.132.0",
"gen-flow-files": "^0.5.0",
"husky": "^8.0.1",
"jsdoc": "^3.6.11",
"jsdoc-babel": "^0.5.0",
"jsdoc-export-default-interop": "^0.3.1",
"node-fetch": "2",
"redux-devtools-extension": "^2.13.9",
"wait-on": "^7.2.0"
},
"resolutions": {
"@dhis2/cli-app-scripts": "^10.4.0",
"@dhis2/app-runtime": "^3.10.2",
"@babel/preset-react": "7.16.7",
"@dhis2/ui": "^9.10.1",
"@js-temporal/polyfill": "0.4.3",
"core-js": "2.5.7",
"i18next": "^20.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}