├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── background.png │ ├── background.svg │ ├── fonts │ │ ├── Rubik-Black.ttf │ │ ├── Rubik-BlackItalic.ttf │ │ ├── Rubik-Bold.ttf │ │ ├── Rubik-BoldItalic.ttf │ │ ├── Rubik-Italic.ttf │ │ ├── Rubik-Light.ttf │ │ ├── Rubik-LightItalic.ttf │ │ ├── Rubik-Medium.ttf │ │ ├── Rubik-MediumItalic.ttf │ │ ├── Rubik-Regular.ttf │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── giphy.gif │ ├── grow.svg │ ├── grow2.svg │ ├── icons │ │ ├── Alert.svg │ │ ├── Baby.svg │ │ ├── Background.svg │ │ ├── Building House.svg │ │ ├── GeneralGoal.svg │ │ ├── GetLeft.svg │ │ ├── Grow.svg │ │ ├── Heart.svg │ │ ├── IconGrow.svg │ │ ├── IconGrowBlue.svg │ │ ├── List.svg │ │ ├── Loading.svg │ │ ├── School.svg │ │ ├── Tools.svg │ │ ├── Worldtrip.svg │ │ ├── img1.png │ │ ├── img2.png │ │ └── logotipo.svg │ ├── iphone.png │ ├── logo.png │ ├── styles │ │ ├── buttons.styl │ │ ├── mixins.styl │ │ ├── style.styl │ │ ├── typography.styl │ │ ├── variables.styl │ │ └── vendor │ │ │ ├── animate.styl │ │ │ └── vue2-animate │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── animations │ │ │ ├── bouncing │ │ │ │ ├── all.less │ │ │ │ ├── bounce.less │ │ │ │ ├── bounceDown.less │ │ │ │ ├── bounceLeft.less │ │ │ │ ├── bounceRight.less │ │ │ │ └── bounceUp.less │ │ │ ├── fading │ │ │ │ ├── all.less │ │ │ │ ├── fade.less │ │ │ │ ├── fadeDown.less │ │ │ │ ├── fadeDownBig.less │ │ │ │ ├── fadeLeft.less │ │ │ │ ├── fadeLeftBig.less │ │ │ │ ├── fadeRight.less │ │ │ │ ├── fadeRightBig.less │ │ │ │ ├── fadeUp.less │ │ │ │ └── fadeUpBig.less │ │ │ ├── rotating │ │ │ │ ├── all.less │ │ │ │ ├── rotate.less │ │ │ │ ├── rotateDownLeft.less │ │ │ │ ├── rotateDownRight.less │ │ │ │ ├── rotateUpLeft.less │ │ │ │ └── rotateUpRight.less │ │ │ ├── sliding │ │ │ │ ├── all.less │ │ │ │ ├── slideDown.less │ │ │ │ ├── slideLeft.less │ │ │ │ ├── slideRight.less │ │ │ │ └── slideUp.less │ │ │ └── zooming │ │ │ │ ├── all.less │ │ │ │ ├── zoom.less │ │ │ │ ├── zoomDown.less │ │ │ │ ├── zoomLeft.less │ │ │ │ ├── zoomRight.less │ │ │ │ └── zoomUp.less │ │ │ ├── make-transitions.less │ │ │ └── vue2-animate.less │ └── telasapp.png ├── common │ ├── directives │ │ └── masks.js │ ├── filters │ │ └── goals.js │ └── functions │ │ └── fun.js ├── main.js ├── router-config.js ├── shared-components │ ├── ActionBar.vue │ ├── Chart.vue │ ├── GeneralNotifications.vue │ ├── Hello.vue │ ├── Loading.vue │ ├── Navigation.vue │ ├── Range.vue │ └── Selector.vue ├── spa │ ├── Dash │ │ ├── Dash.vue │ │ ├── Item.vue │ │ └── RegisterModal.vue │ ├── Forbidden │ │ └── Forbidden.vue │ ├── Goal │ │ ├── Edit.vue │ │ ├── Goal.vue │ │ ├── NewGoal.vue │ │ ├── Notifications.vue │ │ └── SubGoalModal.vue │ ├── Home.vue │ ├── Landing │ │ └── Landing.vue │ ├── Login.vue │ └── Login │ │ └── Login.vue └── vuex │ ├── actions.js │ ├── database.js │ ├── getters.js │ ├── modules │ ├── goal.js │ ├── loader.js │ ├── notifications.js │ ├── subgoals.js │ └── user.js │ ├── mutation-types.js │ ├── resources.js │ └── store.js ├── static └── .gitkeep ├── test ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/background.png -------------------------------------------------------------------------------- /src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/background.svg -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/Rubik-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/assets/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/giphy.gif -------------------------------------------------------------------------------- /src/assets/grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/grow.svg -------------------------------------------------------------------------------- /src/assets/grow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/grow2.svg -------------------------------------------------------------------------------- /src/assets/icons/Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Alert.svg -------------------------------------------------------------------------------- /src/assets/icons/Baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Baby.svg -------------------------------------------------------------------------------- /src/assets/icons/Background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Background.svg -------------------------------------------------------------------------------- /src/assets/icons/Building House.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Building House.svg -------------------------------------------------------------------------------- /src/assets/icons/GeneralGoal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/GeneralGoal.svg -------------------------------------------------------------------------------- /src/assets/icons/GetLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/GetLeft.svg -------------------------------------------------------------------------------- /src/assets/icons/Grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Grow.svg -------------------------------------------------------------------------------- /src/assets/icons/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Heart.svg -------------------------------------------------------------------------------- /src/assets/icons/IconGrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/IconGrow.svg -------------------------------------------------------------------------------- /src/assets/icons/IconGrowBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/IconGrowBlue.svg -------------------------------------------------------------------------------- /src/assets/icons/List.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/List.svg -------------------------------------------------------------------------------- /src/assets/icons/Loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Loading.svg -------------------------------------------------------------------------------- /src/assets/icons/School.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/School.svg -------------------------------------------------------------------------------- /src/assets/icons/Tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Tools.svg -------------------------------------------------------------------------------- /src/assets/icons/Worldtrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/Worldtrip.svg -------------------------------------------------------------------------------- /src/assets/icons/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/img1.png -------------------------------------------------------------------------------- /src/assets/icons/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/img2.png -------------------------------------------------------------------------------- /src/assets/icons/logotipo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/icons/logotipo.svg -------------------------------------------------------------------------------- /src/assets/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/iphone.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/styles/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/buttons.styl -------------------------------------------------------------------------------- /src/assets/styles/mixins.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/mixins.styl -------------------------------------------------------------------------------- /src/assets/styles/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/style.styl -------------------------------------------------------------------------------- /src/assets/styles/typography.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/typography.styl -------------------------------------------------------------------------------- /src/assets/styles/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/variables.styl -------------------------------------------------------------------------------- /src/assets/styles/vendor/animate.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/animate.styl -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/LICENSE -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/README.md -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/package.json -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/all.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounce.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounce.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceDown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceDown.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceUp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/bouncing/bounceUp.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/all.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fade.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fade.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeDown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeDown.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeDownBig.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeDownBig.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeLeftBig.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeLeftBig.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeRightBig.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeRightBig.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeUp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeUp.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeUpBig.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/fading/fadeUpBig.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/all.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotate.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateDownLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateDownLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateDownRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateDownRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateUpLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateUpLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateUpRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/rotating/rotateUpRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/sliding/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/sliding/all.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideDown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideDown.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideUp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/sliding/slideUp.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/all.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoom.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomDown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomDown.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomLeft.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomLeft.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomRight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomRight.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomUp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/animations/zooming/zoomUp.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/make-transitions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/make-transitions.less -------------------------------------------------------------------------------- /src/assets/styles/vendor/vue2-animate/src/vue2-animate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/styles/vendor/vue2-animate/src/vue2-animate.less -------------------------------------------------------------------------------- /src/assets/telasapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/assets/telasapp.png -------------------------------------------------------------------------------- /src/common/directives/masks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/common/directives/masks.js -------------------------------------------------------------------------------- /src/common/filters/goals.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/functions/fun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/common/functions/fun.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/router-config.js -------------------------------------------------------------------------------- /src/shared-components/ActionBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/ActionBar.vue -------------------------------------------------------------------------------- /src/shared-components/Chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Chart.vue -------------------------------------------------------------------------------- /src/shared-components/GeneralNotifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/GeneralNotifications.vue -------------------------------------------------------------------------------- /src/shared-components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Hello.vue -------------------------------------------------------------------------------- /src/shared-components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Loading.vue -------------------------------------------------------------------------------- /src/shared-components/Navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Navigation.vue -------------------------------------------------------------------------------- /src/shared-components/Range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Range.vue -------------------------------------------------------------------------------- /src/shared-components/Selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/shared-components/Selector.vue -------------------------------------------------------------------------------- /src/spa/Dash/Dash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Dash/Dash.vue -------------------------------------------------------------------------------- /src/spa/Dash/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Dash/Item.vue -------------------------------------------------------------------------------- /src/spa/Dash/RegisterModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Dash/RegisterModal.vue -------------------------------------------------------------------------------- /src/spa/Forbidden/Forbidden.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spa/Goal/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Goal/Edit.vue -------------------------------------------------------------------------------- /src/spa/Goal/Goal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Goal/Goal.vue -------------------------------------------------------------------------------- /src/spa/Goal/NewGoal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Goal/NewGoal.vue -------------------------------------------------------------------------------- /src/spa/Goal/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Goal/Notifications.vue -------------------------------------------------------------------------------- /src/spa/Goal/SubGoalModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Goal/SubGoalModal.vue -------------------------------------------------------------------------------- /src/spa/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Home.vue -------------------------------------------------------------------------------- /src/spa/Landing/Landing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Landing/Landing.vue -------------------------------------------------------------------------------- /src/spa/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/spa/Login.vue -------------------------------------------------------------------------------- /src/spa/Login/Login.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/actions.js -------------------------------------------------------------------------------- /src/vuex/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/database.js -------------------------------------------------------------------------------- /src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/getters.js -------------------------------------------------------------------------------- /src/vuex/modules/goal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/modules/goal.js -------------------------------------------------------------------------------- /src/vuex/modules/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/modules/loader.js -------------------------------------------------------------------------------- /src/vuex/modules/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/modules/notifications.js -------------------------------------------------------------------------------- /src/vuex/modules/subgoals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/modules/subgoals.js -------------------------------------------------------------------------------- /src/vuex/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/modules/user.js -------------------------------------------------------------------------------- /src/vuex/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/mutation-types.js -------------------------------------------------------------------------------- /src/vuex/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/resources.js -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/src/vuex/store.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablohpsilva/Goal/HEAD/yarn.lock --------------------------------------------------------------------------------