-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.42 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
{
"name": "root",
"author": "Erik Arenhill <erik@dhis2.org>",
"repository": "https://github.com/dhis2/app-hub.git",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"client",
"server",
"tools"
],
"scripts": {
"db:migrate": "yarn workspace server db:migrate",
"db:reset": "yarn workspace server db:reset",
"db:seed": "yarn workspace server db:seed",
"build": "yarn workspace client build",
"start": "concurrently -n w: \"yarn:dev:*\"",
"dev:server": "yarn workspace server start:dev",
"dev:client": "yarn workspace client start",
"test": "yarn test:server && yarn test:client",
"test:server": "yarn workspace server test",
"test:client": "yarn workspace client test",
"clone": "yarn workspace tools clone",
"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",
"format:client": "yarn workspace client format",
"format:server": "yarn workspace client format"
},
"devDependencies": {
"@dhis2/cli-style": "^10.5.1",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"version": "2.34.0"
}