forked from dhis2/dashboard-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.19 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
{
"name": "dashboard-app",
"version": "31.0.1",
"description": "DHIS2 Dashboard app",
"private": true,
"license": "BSD-3-Clause",
"dependencies": {
"@dhis2/analytics": "^11.3.4",
"@dhis2/app-runtime": "^2.6.1",
"@dhis2/app-runtime-adapter-d2": "^1.0.1",
"@dhis2/d2-i18n": "^1.0.6",
"@dhis2/d2-ui-core": "^7.1.3",
"@dhis2/d2-ui-interpretations": "^7.1.3",
"@dhis2/d2-ui-mentions-wrapper": "^7.1.1",
"@dhis2/d2-ui-rich-text": "^7.1.1",
"@dhis2/d2-ui-sharing-dialog": "^7.1.1",
"@dhis2/d2-ui-translation-dialog": "^7.1.3",
"@dhis2/data-visualizer-plugin": "^35.15.0",
"@dhis2/ui": "^5.7.8",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^4.9.1",
"classnames": "^2.2.6",
"d2": "^31.8.1",
"d2-utilizr": "^0.2.16",
"i18next": "^19.8.3",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"react-grid-layout": "1.1.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-jsx": "^3.3.2",
"typeface-roboto": "^1.1.13",
"whatwg-fetch": "^3.4.1"
},
"scripts": {
"start": "d2-app-scripts start",
"coverage": "npm test -- --coverage",
"lint": "d2-style js check || d2-style text check",
"build": "d2-app-scripts build",
"build:netlify": "yarn build --standalone",
"test": "d2-app-scripts test",
"validate-push": "CI=true yarn test",
"postinstall": "patch-package",
"cypress:start": "BROWSER=none yarn start",
"cy:open-live": "cypress_dhis2_api_stub_mode=DISABLED d2-utils-cypress open --appStart 'yarn cypress:start'",
"cy:run-live": "cypress_dhis2_api_stub_mode=DISABLED d2-utils-cypress run --appStart 'yarn cypress:start'",
"cy:open-stub": "cypress_dhis2_api_stub_mode=STUB d2-utils-cypress open --appStart 'yarn cypress:start'",
"cy:run-stub": "cypress_dhis2_api_stub_mode=STUB d2-utils-cypress run --tags '@nonmutating' --appStart 'yarn cypress:start' --record",
"cy:capture": "cypress_dhis2_api_stub_mode=CAPTURE yarn d2-utils-cypress run --appStart 'yarn cypress:start'"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^5",
"@dhis2/cli-style": "^7.2.2",
"@dhis2/cli-utils-cypress": "^4.0.0",
"@dhis2/cypress-commands": "^4.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.1",
"d2-manifest": "^1.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-plugin-cypress": "^2.11.2",
"immutability-helper": "^3.1.1",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"redux-mock-store": "^1.5.4"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"moduleNameMapper": {
"^.+\\.(css|sass|scss)$": "identity-obj-proxy"
}
}
}