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
79 lines (79 loc) · 3.08 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
{
"name": "@dhis2/ui-core",
"description": "Component primitives for DHIS2 user interfaces",
"version": "4.21.1",
"main": "build/cjs/lib.js",
"module": "build/es/lib.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/dhis2/ui-core.git"
},
"author": "Viktor Varland <viktor@dhis2.org>",
"license": "BSD-3-Clause",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf ./build/*",
"build": "d2-app-scripts build",
"build:docs": "d2-utils-docsite build ./docs -o ./build/docs --jsdoc ./src --jsdoc-output-file api.md",
"build:demo": "EXTEND_ESLINT=true build-storybook -c .storybook -o ./build/docs/demo",
"start": "yarn start:demo",
"start:docs": "d2-utils-docsite serve ./docs -o ./build/docs --jsdoc ./src --jsdoc-output-file api.md",
"start:demo": "EXTEND_ESLINT=true start-storybook --port 5000",
"start:testing": "EXTEND_ESLINT=true STORYBOOK_TESTING=1 start-storybook --port 5001 --quiet --ci",
"cy:open": "concurrently --kill-others -n storybook,cypress 'yarn start:testing' 'wait-on http-get://localhost:5001 && d2-utils-cypress open'",
"cy:run": "concurrently --kill-others --success first -n storybook,cypress 'yarn start:testing' 'wait-on http-get://localhost:5001 && d2-utils-cypress run'",
"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:staged": "yarn format:js --staged && yarn format:text --staged",
"format:js": "d2-style js apply",
"format:text": "d2-style text apply",
"test": "d2-app-scripts test"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^3.2.5",
"@dhis2/cli-style": "^6.0.0",
"@dhis2/cli-utils-cypress": "^1.0.2",
"@dhis2/cli-utils-docsite": "^1.3.0",
"@storybook/addons": "^5.3.9",
"@storybook/components": "^5.3.17",
"@storybook/csf": "^0.0.1",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.17",
"@wertarbyte/react-props-md-table": "^1.1.1",
"concurrently": "^5.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^24.9.0",
"react": "16.8",
"react-dev-utils": "^10.2.1",
"react-docgen": "^5.3.0",
"react-dom": "16.8",
"storybook-addon-jsx": "^7.1.14",
"storybook-addon-react-docgen": "^1.2.28",
"styled-jsx": "^3.2.5",
"typeface-roboto": "^0.0.75",
"wait-on": "^4.0.1"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8",
"styled-jsx": "^3.2"
},
"dependencies": {
"@dhis2/prop-types": "^1.6.4",
"@popperjs/core": "^2.4.0",
"classnames": "^2.2.6",
"react-popper": "^2.2.3",
"resize-observer-polyfill": "^1.5.1"
},
"files": [
"build",
"docs"
]
}