This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.72 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
{
"name": "@dhis2/ui-widgets",
"version": "2.1.1",
"main": "build/cjs/lib.js",
"module": "build/es/lib.js",
"sideEffects": false,
"repository": "[email protected]:dhis2/ui-widgets.git",
"author": "Edoardo Sabadelli <[email protected]>",
"contributors": [
"Viktor Varland <[email protected]>"
],
"license": "BSD-3-Clause",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "d2-app-scripts build && yarn build:demo",
"build:demo": "EXTEND_ESLINT=true build-storybook -c .storybook -o ./build/docs",
"prestart": "d2-app-scripts i18n extract && d2-app-scripts i18n generate",
"start": "EXTEND_ESLINT=true start-storybook -c .storybook",
"start:demo": "yarn start --port 5000",
"start:testing": "STORYBOOK_TESTING=1 yarn start --port 5001 --quiet --ci",
"cypress:open": "concurrently --kill-others -n storybook,cypress 'yarn start:testing' 'wait-on http-get://localhost:5001 && cypress open'",
"cypress:run": "concurrently --kill-others --success first -n storybook,cypress 'yarn start:testing' 'wait-on http-get://localhost:5001 && cypress run --headless'",
"lint": "yarn lint:js && yarn lint:text",
"lint:js": "d2-style js check",
"lint:text": "d2-style text check",
"format": "yarn format:js && yarn format:text",
"format:js": "d2-style js apply",
"format:text": "d2-style text apply",
"format:staged": "yarn format:js --staged && yarn format:text --staged",
"test": "d2-app-scripts test"
},
"devDependencies": {
"@dhis2/app-runtime": "^2.1",
"@dhis2/cli-app-scripts": "^3.2.9",
"@dhis2/cli-style": "^6.0.0",
"@dhis2/d2-i18n": "^1.0.6",
"@dhis2/ui-core": "^4.17.1",
"@storybook/csf": "^0.0.1",
"@storybook/preset-create-react-app": "^2.1.2",
"@storybook/react": "^5.3.18",
"concurrently": "^5.1.0",
"cypress": "^4.2.0",
"cypress-cucumber-preprocessor": "^2.0.1",
"fs-extra": "^8.1.0",
"react": "^16.13.1",
"react-dev-utils": "^10.2.1",
"react-dom": "^16.13.1",
"storybook-addon-jsx": "^7.2.3",
"storybook-addon-react-docgen": "^1.2.32",
"styled-jsx": "^3.2.5",
"typeface-roboto": "^0.0.75",
"wait-on": "^4.0.0"
},
"peerDependencies": {
"@dhis2/app-runtime": "^2.1",
"@dhis2/d2-i18n": "^1",
"@dhis2/ui-core": "^4",
"react": "^16.8",
"react-dom": "^16.8",
"styled-jsx": "^3.2"
},
"dependencies": {
"@dhis2/prop-types": "^1.6",
"classnames": "^2.2.6"
},
"files": [
"build",
"docs"
]
}