forked from SAP/ui5-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.21 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
{
"name": "@ui5/webcomponents-root",
"version": "0.7.0",
"description": "UI5 Web Components",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"private": true,
"keywords": [
"openui5",
"sapui5",
"ui5"
],
"repository": {
"type": "git",
"url": "https://github.com/SAP/ui5-webcomponents.git"
},
"scripts": {
"build": "npm-run-all --sequential build:core build:base build:main build:playground",
"build:core": "cd packages/core && yarn build",
"build:base": "cd packages/base && yarn build",
"build:main": "cd packages/main && yarn build",
"build:docs": "cd packages/main && yarn build:docs",
"build:api": "cd packages/main && yarn build:api",
"build:playground": "cd packages/playground && yarn build",
"clean": "npm-run-all --sequential clean:core clean:main clean:playground",
"clean:core": "cd packages/core && yarn clean",
"clean:main": "cd packages/main && yarn clean",
"clean:playground": "cd packages/playground && yarn clean",
"serve": "cross-env DEV=true yarn build:core && cross-env DEV=true yarn build:base && cross-env DEV=true yarn build:main && npm-run-all --parallel serve:webcomponents serve:playground",
"serve:es5": "cross-env DEV=true yarn build:core && cross-env DEV=true yarn build:base && cross-env DEV=true yarn build:main && npm-run-all --parallel serve:webcomponents:es5 serve:playground",
"start": "npm run serve",
"start:es5": "npm run serve:es5",
"serve:webcomponents": "cd packages/main && yarn dev",
"serve:webcomponents:es5": "cd packages/main && yarn dev:es5",
"serve:playground": "cd packages/playground && yarn serve",
"test": "cd packages/main && yarn test",
"link-all": "wsrun link",
"unlink-all": "wsrun unlink"
},
"devDependencies": {
"cross-env": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2"
},
"resolutions": {
"@ui5/webcomponents-core": "0.7.0",
"@ui5/webcomponents-base": "0.7.0",
"@ui5/webcomponents": "0.7.0",
"@ui5/webcomponents-playground": "0.7.0",
"abstract-syntax-tree": "1.0.3",
"dir-glob": "2.0.0"
},
"workspaces": [
"packages/core",
"packages/base",
"packages/main",
"packages/playground"
]
}