-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.71 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
{
"name": "root",
"version": "11.7.4",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dhis2/app-platform.git"
},
"workspaces": {
"packages": [
"examples/simple-app",
"examples/pwa-app",
"cli",
"shell",
"adapter",
"pwa"
]
},
"devDependencies": {
"@dhis2/cli-style": "^10.4.3",
"@dhis2/cli-utils-docsite": "^3.0.0",
"concurrently": "^6.0.0",
"serve": "^12.0.0"
},
"scripts": {
"format": "d2-style apply",
"lint": "d2-style check",
"build": "yarn build:pwa && yarn build:adapter && yarn build:example && yarn build:pwa-app",
"build:adapter": "yarn workspace @dhis2/app-adapter build",
"build:example": "yarn workspace simple-app build",
"build:pwa-app": "yarn workspace pwa-app build",
"build:pwa": "yarn workspace @dhis2/pwa build",
"pwa-demo": "yarn build:pwa && yarn build:adapter && yarn workspace pwa-app demo",
"start:example": "yarn workspace simple-app start --force",
"start": "yarn build:adapter && yarn start:example",
"docs:build": "mkdir -p dist && cp docs/index.html dist/",
"test:adapter": "yarn workspace @dhis2/app-adapter test",
"test:cli": "yarn workspace @dhis2/cli-app-scripts test",
"test": "yarn test:adapter && yarn test:cli"
},
"d2": {
"docsite": {
"name": "DHIS2 Application Platform",
"description": "Unified application architecture and build pipeline to simplify and standardize application development within the DHIS2 ecosystem."
}
},
"dependencies": {}
}