-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 2.05 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
{
"name": "user-app",
"version": "100.4.0",
"description": "DHIS2 User app",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build": "d2-app-scripts build",
"start": "d2-app-scripts start",
"format": "yarn d2-style apply",
"format:staged": "yarn d2-style apply --staged",
"lint": "yarn d2-style check",
"documentation": "rimraf build && jsdoc -c jsdoc.json",
"start:nobrowser": "BROWSER=none d2-app-scripts start",
"test": "d2-app-scripts test",
"cypress:capture": "start-server-and-test 'yarn start:nobrowser' http://localhost:3000 'yarn cypress run --env networkMode=capture'",
"cypress:stub": "start-server-and-test 'yarn start:nobrowser' http://localhost:3000 'yarn cypress run --env networkMode=stub'",
"cypress:live": "start-server-and-test 'yarn start:nobrowser' http://localhost:3000 'yarn cypress open --env networkMode=live'"
},
"dependencies": {
"@dhis2/app-runtime": "^3.12.0",
"@dhis2/d2-i18n": "^1.1.3",
"@dhis2/ui": "9.15.0",
"classnames": "^2.3.1",
"lodash-es": "^4.17.21",
"memoize-one": "^6.0.0",
"p-debounce": "^4.0.0",
"query-string": "^7.0.1",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"use-debounce": "^7.0.0",
"use-query-params": "^1.2.3"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.0.7",
"@cypress/webpack-preprocessor": "^6.0.2",
"@dhis2/cli-app-scripts": "^11.7.5",
"@dhis2/cli-style": "^10.4.1",
"@dhis2/cypress-commands": "10.0.6",
"@dhis2/cypress-plugins": "10.0.6",
"@testing-library/cypress": "^8.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.4.1",
"cypress": "13.0",
"jsdoc": "^3.6.2",
"redux-logger": "^3.0.6",
"start-server-and-test": "^1.14.0"
}
}