-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
160 lines (160 loc) · 5.97 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
156
157
158
159
160
{
"name": "metadata-synchronization",
"description": "Advanced metadata & data synchronization utility",
"version": "2.20.0",
"license": "GPL-3.0",
"author": "EyeSeeTea team",
"homepage": ".",
"repository": {
"type": "git",
"url": "git+https://github.com/eyeseetea/metadata-synchronization.git"
},
"dependencies": {
"@dhis2/app-runtime": "3.10.4",
"@dhis2/d2-i18n": "1.1.3",
"@dhis2/ui": "7.4.1",
"@eyeseetea/d2-api": "1.16.0-beta.6",
"@eyeseetea/d2-ui-components": "2.9.0-beta.3",
"@eyeseetea/feedback-component": "0.1.3-beta.1",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.60",
"@material-ui/styles": "4.11.4",
"@monaco-editor/react": "4.3.1",
"@octokit/rest": "18.12.0",
"axios": "1.6.4",
"btoa": "1.2.1",
"cmd-ts": "0.7.0",
"cronstrue": "1.119.0",
"cryptr": "4.0.2",
"file-saver": "2.0.5",
"fluture": "14.0.0",
"font-awesome": "4.7.0",
"json-stringify-deterministic": "1.0.1",
"jszip": "3.8.0",
"lodash": "4.17.21",
"log4js": "^6.9.1",
"mime-types": "2.1.33",
"moment": "2.29.4",
"monaco-editor": "0.29.1",
"nano-memoize": "1.2.1",
"node-schedule": "2.1.1",
"purify-ts": "1.1.0",
"purify-ts-extra-codec": "0.6.0",
"qs": "^6.12.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "11.4.2",
"react-json-view-lite": "^1.4.0",
"react-linkify": "1.0.0-alpha",
"react-markdown": "^8.0.7",
"react-router-dom": "5.3.0",
"react-virtualized-auto-sizer": "1.0.6",
"react-window": "1.8.6",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rxjs": "5.5.7",
"semver": "7.5.2",
"styled-components": "6.1.8",
"styled-jsx": "5.0.0"
},
"scripts": {
"clean": "npx rimraf build/ dist/",
"start": "yarn run-ts scripts/run.ts start-server -p ${PORT:-8081}",
"start-scheduler": "yarn run-ts --files src/scheduler/cli.ts",
"build": "yarn run-ts scripts/run.ts build",
"build-scheduler": "ncc build src/scheduler/cli.ts -m -o $npm_package_name-server && zip -r $npm_package_name-server.zip $npm_package_name-server && npx rimraf $npm_package_name-server/",
"run-ts": "ts-node --files -O '{\"module\":\"commonjs\"}'",
"migrate": "yarn run-ts src/migrations/cli.ts",
"test": "jest",
"lint": "eslint src cypress --ext .js,.jsx,.ts,.tsx",
"eject": "react-scripts eject",
"prettify": "prettier \"./**/*.{js,jsx,json,css,ts,tsx}\" --write",
"extract-pot": "yarn d2-i18n-extract -p src/ -o i18n/",
"localize": "yarn update-po && d2-i18n-generate -n metadata-synchronization -p ./i18n/ -o ./src/locales/",
"update-po": "yarn extract-pot && for pofile in i18n/*.po; do msgmerge --backup=off -U $pofile i18n/en.pot; done",
"cy:verify": "cypress verify",
"cy:e2e:open": "NODE_ENV=test CYPRESS_E2E=true cypress open",
"cy:e2e:run": "NODE_ENV=test CYPRESS_E2E=true cypress run --browser chrome",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/plugin-proposal-decorators": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@dhis2/d2-i18n-extract": "1.0.8",
"@dhis2/d2-i18n-generate": "1.2.0",
"@types/btoa": "1.2.3",
"@types/cryptr": "4.0.1",
"@types/file-saver": "2.0.3",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.175",
"@types/mime-types": "2.1.1",
"@types/node": "16.11.1",
"@types/node-schedule": "1.3.2",
"@types/qs": "^6.9.15",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"@types/react-linkify": "1.0.1",
"@types/react-router-dom": "5.3.1",
"@types/react-virtualized-auto-sizer": "1.0.1",
"@types/react-window": "1.8.5",
"@types/semver": "7.3.8",
"@types/styled-components": "5.1.15",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"@vercel/ncc": "0.33.3",
"@welldone-software/why-did-you-render": "6.2.1",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"cypress": "8.6.0",
"cypress-xpath": "1.6.2",
"d2-manifest": "1.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-flowtype": "6.1.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unused-imports": "1.1.5",
"http-proxy-middleware": "2.0.1",
"husky": "7.0.2",
"jest": "27.3.0",
"miragejs": "0.1.42",
"mocha": "9.1.3",
"mochawesome": "6.3.1",
"mochawesome-merge": "4.2.0",
"prettier": "2.4.1",
"prop-types": "15.7.2",
"react-scripts": "4.0.3",
"rimraf": "3.0.2",
"rxjs-compat": "6.6.7",
"sinon": "11.1.2",
"ts-jest": "27.0.7",
"ts-node": "^10.8.2",
"typescript": "4.4.4",
"wait-on": "6.0.0"
},
"manifest.webapp": {
"name": "MetaData Synchronization",
"description": "Advanced metadata & data synchronization utility",
"icons": {
"48": "icon.png"
},
"developer": {
"url": "https://www.eyeseetea.com/",
"name": "EyeSeeTea team"
},
"activities": {
"dhis": {
"href": "../../..",
"namespace": "metadata-synchronization"
}
}
}
}