Created
May 1, 2017 13:53
-
-
Save cristhian-net/7de5d284d93cafe25ddd69b3a7d02880 to your computer and use it in GitHub Desktop.
This is my actual aurelia json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "app-ux-showcase", | |
| "type": "project:application", | |
| "platform": { | |
| "id": "web", | |
| "displayName": "Web", | |
| "output": "scripts", | |
| "index": "index.html" | |
| }, | |
| "transpiler": { | |
| "id": "typescript", | |
| "displayName": "TypeScript", | |
| "fileExtension": ".ts", | |
| "dtsSource": [ | |
| "./typings/**/*.d.ts", | |
| "./custom_typings/**/*.d.ts" | |
| ], | |
| "source": "src/**/*.ts" | |
| }, | |
| "markupProcessor": { | |
| "id": "none", | |
| "displayName": "None", | |
| "fileExtension": ".html", | |
| "source": "src/**/*.html" | |
| }, | |
| "cssProcessor": { | |
| "id": "none", | |
| "displayName": "None", | |
| "fileExtension": ".css", | |
| "source": "src/**/*.css" | |
| }, | |
| "editor": { | |
| "id": "vscode", | |
| "displayName": "Visual Studio Code" | |
| }, | |
| "unitTestRunner": { | |
| "id": "karma", | |
| "displayName": "Karma", | |
| "source": "test/unit/**/*.ts" | |
| }, | |
| "paths": { | |
| "root": "src", | |
| "resources": "src/resources", | |
| "elements": "src/resources/elements", | |
| "attributes": "src/resources/attributes", | |
| "valueConverters": "src/resources/value-converters", | |
| "bindingBehaviors": "src/resources/binding-behaviors" | |
| }, | |
| "testFramework": { | |
| "id": "jasmine", | |
| "displayName": "Jasmine" | |
| }, | |
| "build": { | |
| "targets": [ | |
| { | |
| "id": "web", | |
| "displayName": "Web", | |
| "output": "scripts", | |
| "index": "index.html" | |
| } | |
| ], | |
| "loader": { | |
| "type": "require", | |
| "configTarget": "vendor-bundle.js", | |
| "includeBundleMetadataInConfig": "auto", | |
| "plugins": [ | |
| { | |
| "name": "text", | |
| "extensions": [ | |
| ".html", | |
| ".css" | |
| ], | |
| "stub": true | |
| } | |
| ] | |
| }, | |
| "options": { | |
| "minify": "stage & prod", | |
| "sourcemaps": "dev & stage" | |
| }, | |
| "bundles": [ | |
| { | |
| "name": "app-bundle.js", | |
| "source": [ | |
| "[**/*.js]", | |
| "**/*.{css,html}" | |
| ] | |
| }, | |
| { | |
| "name": "vendor-bundle.js", | |
| "prepend": [ | |
| "node_modules/bluebird/js/browser/bluebird.core.js", | |
| "scripts/require.js" | |
| ], | |
| "dependencies": [ | |
| "aurelia-binding", | |
| "aurelia-bootstrapper", | |
| "aurelia-dependency-injection", | |
| "aurelia-event-aggregator", | |
| "aurelia-fetch-client", | |
| "aurelia-framework", | |
| "aurelia-history", | |
| "aurelia-history-browser", | |
| "aurelia-loader", | |
| "aurelia-loader-default", | |
| "aurelia-logging", | |
| "aurelia-logging-console", | |
| "aurelia-metadata", | |
| "aurelia-pal", | |
| "aurelia-pal-browser", | |
| "aurelia-path", | |
| "aurelia-polyfills", | |
| "aurelia-route-recognizer", | |
| "aurelia-router", | |
| "aurelia-task-queue", | |
| "aurelia-templating", | |
| "aurelia-templating-binding", | |
| { | |
| "name": "text", | |
| "path": "../scripts/text" | |
| }, | |
| { | |
| "name": "aurelia-templating-resources", | |
| "path": "../node_modules/aurelia-templating-resources/dist/amd", | |
| "main": "aurelia-templating-resources" | |
| }, | |
| { | |
| "name": "aurelia-templating-router", | |
| "path": "../node_modules/aurelia-templating-router/dist/amd", | |
| "main": "aurelia-templating-router" | |
| }, | |
| { | |
| "name": "aurelia-testing", | |
| "path": "../node_modules/aurelia-testing/dist/amd", | |
| "main": "aurelia-testing", | |
| "env": "dev" | |
| }, | |
| { | |
| "name": "aurelia-validation", | |
| "path": "../node_modules/aurelia-validation/dist/amd", | |
| "main": "aurelia-validation" | |
| }, | |
| { | |
| "name": "aurelia-http-client", | |
| "path": "../node_modules/aurelia-http-client/dist/amd", | |
| "main": "aurelia-http-client" | |
| }, | |
| { | |
| "name": "aurelia-auth", | |
| "path": "../node_modules/aurelia-auth/dist/amd", | |
| "main": "aurelia-auth" | |
| }, | |
| "jquery", | |
| { | |
| "name": "moment", | |
| "path": "../node_modules/moment/", | |
| "main": "moment", | |
| "resources": [ | |
| "locale/es.js" | |
| ] | |
| }, | |
| { | |
| "name": "momentES", | |
| "path": "../node_modules/moment", | |
| "main": "locale/es", | |
| "deps": [ | |
| "moment" | |
| ], | |
| "exports": "moment" | |
| }, | |
| { | |
| "name": "bootstrap", | |
| "path": "../node_modules/bootstrap/dist", | |
| "main": "js/bootstrap.min", | |
| "deps": [ | |
| "jquery" | |
| ], | |
| "exports": "$", | |
| "resources": [ | |
| "css/bootstrap.css" | |
| ] | |
| }, | |
| { | |
| "name": "toastr", | |
| "path": "../node_modules/toastr", | |
| "main": "toastr", | |
| "resources": [ | |
| "build/toastr.min.css" | |
| ], | |
| "deps": ["jquery"] | |
| }, | |
| { | |
| "name": "eonasdan-bootstrap-datetimepicker", | |
| "path": "../node_modules/eonasdan-bootstrap-datetimepicker/build", | |
| "main": "js/bootstrap-datetimepicker.min", | |
| "resources": [ | |
| "css/bootstrap-datetimepicker.min.css" | |
| ], | |
| "deps": ["jquery"] | |
| }, | |
| { | |
| "name": "aurelia-bootstrap-datetimepicker", | |
| "path": "../node_modules/aurelia-bootstrap-datetimepicker/dist/amd", | |
| "main": "index", | |
| "resources": [ | |
| "**/*.{css,html}" | |
| ] | |
| }, | |
| { | |
| "name": "aurelia-ux", | |
| "path": "../node_modules/aurelia-ux/dist/amd", | |
| "main": "index", | |
| "resources": [ | |
| "./button/ux-button.html", | |
| "./button/ux-button-theme.css", | |
| "./input/ux-input.html", | |
| "./input/ux-input-theme.css", | |
| "./input-info/ux-input-info.html", | |
| "./input-info/ux-input-info-theme.css", | |
| "./textarea/ux-textarea.html", | |
| "./textarea/ux-textarea-theme.css", | |
| "./form/ux-form.html", | |
| "./form/ux-form-theme.css", | |
| "./form/ux-field.html", | |
| "./form/ux-field-theme.css", | |
| "./chip-input/ux-chip-input.html", | |
| "./chip-input/ux-chip-input-theme.css", | |
| "./chip-input/ux-chip.html", | |
| "./chip-input/ux-chip-theme.css", | |
| "./chip-input/ux-tag.html", | |
| "./chip-input/ux-tag-theme.css" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment