Skip to content

Instantly share code, notes, and snippets.

@grknylmz
Created April 2, 2021 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grknylmz/65b740ad3b31da2090feb146bab24377 to your computer and use it in GitHub Desktop.
Save grknylmz/65b740ad3b31da2090feb146bab24377 to your computer and use it in GitHub Desktop.
{
"name": "",
"version": "1.0.0-beta",
"description": "",
"private": true,
"scripts": {
"start": "ui5 serve",
"lint": "eslint webapp",
"karma": "karma start",
"karma-ci": "rimraf coverage && karma start karma-ci.conf.js",
"watch": "npm run karma",
"test": "npm run lint && npm run karma-ci",
"build": "rimraf dist && ui5 build self-contained --all --exclude-task=createDebugFiles replaceCopyright --include-task=generateCachebusterInfo && npm run delete",
"ready": "rimraf dist && ui5 build preload && rimraf node_modules",
"build-self-contained": "rimraf dist && ui5 build self-contained --all --exclude-task=createDebugFiles replaceCopyright --include-task=generateCachebusterInfo",
"build-self-del": "rimraf dist && ui5 build self-contained --all --exclude-task=createDebugFiles replaceCopyright --include-task=generateCachebusterInfo && npm run delete",
"serve-dist": "ws --compress -d dist",
"dev": "browser-sync start -s \"webapp/\" -f . --no-notify --host localhost --port 9000",
"devc": "npm run chrome && browser-sync start -s \"webapp/\" -f . --no-notify --host localhost --port 9000",
"prod": "browser-sync start -s \"dist/\" -f . --no-notify --host localhost --port 9000",
"delete": "node cleanUp.js",
"chrome": "open -n -a /Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --args --user-data-dir=\"/tmp/chrome_dev_test\" --disable-web-security"
},
"dependencies": {
"@openui5/sap.f": "^1.71.3",
"@openui5/sap.m": "^1.71.3",
"@openui5/sap.ui.core": "^1.71.3",
"@openui5/sap.ui.layout": "^1.71.3",
"@openui5/themelib_sap_belize": "^1.71.3"
},
"devDependencies": {
"@ui5/cli": "^1.8.1",
"@sap/ui5-builder-webide-extension": "1.0.2",
"del": "^5.1.0",
"eslint": "^5.16.0",
"local-web-server": "^3.0.7",
"rimraf": "^2.7.1"
},
"ui5": {
"dependencies": [
"@sap/ui5-builder-webide-extension",
"@openui5/sap.f",
"@openui5/sap.m",
"@openui5/sap.ui.core",
"@openui5/sap.ui.layout",
"@openui5/themelib_sap_belize",
"rimraf",
"del"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment