-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 2.6 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
{
"name": "sms-configuration-app",
"version": "100.0.55",
"description": "",
"license": "BSD-3-Clause",
"author": "Jan-Gerke Salomon <jan-gerke@dhis2.org>",
"private": true,
"scripts": {
"build": "d2-app-scripts build",
"start": "d2-app-scripts start",
"test": "d2-app-scripts test",
"cy:start": "BROWSER=none yarn start",
"cy:open": "concurrently --kill-others --success first --names 'app,cy' 'yarn cy:start' 'yarn cy:wait && cypress open'",
"cy:run:live": "cypress run --env networkMode=live",
"cy:run:capture": "cypress run --env networkMode=capture",
"cy:run:stub": "cypress run --env networkMode=stub",
"cy:wait": "wait-on http-get://localhost:3000",
"cy:capture": "concurrently --kill-others --success first --names 'app,cy' 'yarn cy:start' 'yarn cy:wait && yarn cy:run:capture'",
"cy:stub": "concurrently --kill-others --success first --names 'app,cy' 'yarn cy:start' 'yarn cy:wait && yarn cy:run:stub'",
"cy:run": "concurrently --kill-others --success first --names 'app,cy' 'yarn cy:start' 'yarn cy:wait && yarn cy:run:live'",
"cy:run:tags": "concurrently --kill-others --success first --names 'app,cy' 'yarn cy:start' 'yarn cy:wait && cypress-tags run'",
"lint:js": "d2-style js check",
"lint:text": "d2-style text check",
"lint:staged": "yarn lint:js --staged && yarn lint:text --staged",
"lint": "yarn lint:js && yarn lint:text",
"format:js": "d2-style js apply",
"format:text": "d2-style text apply",
"format:staged": "yarn format:js --staged && yarn format:text --staged",
"format": "yarn format:js && yarn format:text"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^11.7.1",
"@dhis2/cli-style": "^10.4.1",
"@dhis2/cypress-commands": "^8.0.0",
"@dhis2/cypress-plugins": "^8.0.0",
"@testing-library/react-hooks": "^3.3.0",
"concurrently": "^6.2.0",
"cypress": "^7.5.0",
"cypress-cucumber-preprocessor": "^4.1.2",
"eslint-plugin-cypress": "^2.11.2",
"react-test-renderer": "^16.13.1",
"wait-on": "^5.3.0"
},
"dependencies": {
"@dhis2/app-runtime": "^3.2.0",
"@dhis2/d2-i18n": "^1.1.0",
"@dhis2/prop-types": "^2.0.0",
"@dhis2/ui": "^9.11.7",
"classnames": "^2.2.6",
"moment": "^2.27.0",
"query-string": "^6.13.8",
"react-router-dom": "^5.2.0",
"use-debounce": "^5.2.1",
"use-query-params": "^1.1.9"
},
"resolutions": {
"@dhis2/ui": "^9.11.7"
}
}