├── .browserslistrc ├── .eslintrc.js ├── .github ├── config.yml └── workflows │ ├── codeql-analysis.yml │ ├── node.js.yml │ └── scraper.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── data ├── ideas.json └── projects.json ├── docs ├── API,_FULLSTACK, WEB, APPLICATION, WEBSITE_INTERMEDIATE.md ├── DESKTOP_APPLICATION_BASIC.md ├── DESKTOP_APPLICATION_INTERMEDIATE.md ├── GAME_BASIC.md ├── MACHINE_LEARNING_BASIC.md ├── SCRIPT_INTERMEDIATE.md ├── WEBSITE_ADVANCED.md ├── WEBSITE_BASIC.md ├── WEBSITE_INTERMEDIATE.md ├── WEB_APPLICATION_BASIC.md └── WEB_BASIC.md ├── jest.config.js ├── jsconfig.json ├── package.json ├── public ├── _redirects ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── main.js ├── plugins │ └── vuetify.js ├── router │ └── index.js ├── scraper │ └── index.js └── views │ └── Home.vue ├── tests └── unit │ └── data │ └── index.spec.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.github/workflows/scraper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/babel.config.js -------------------------------------------------------------------------------- /data/ideas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/data/ideas.json -------------------------------------------------------------------------------- /data/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/data/projects.json -------------------------------------------------------------------------------- /docs/API,_FULLSTACK, WEB, APPLICATION, WEBSITE_INTERMEDIATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/API,_FULLSTACK, WEB, APPLICATION, WEBSITE_INTERMEDIATE.md -------------------------------------------------------------------------------- /docs/DESKTOP_APPLICATION_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/DESKTOP_APPLICATION_BASIC.md -------------------------------------------------------------------------------- /docs/DESKTOP_APPLICATION_INTERMEDIATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/DESKTOP_APPLICATION_INTERMEDIATE.md -------------------------------------------------------------------------------- /docs/GAME_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/GAME_BASIC.md -------------------------------------------------------------------------------- /docs/MACHINE_LEARNING_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/MACHINE_LEARNING_BASIC.md -------------------------------------------------------------------------------- /docs/SCRIPT_INTERMEDIATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/SCRIPT_INTERMEDIATE.md -------------------------------------------------------------------------------- /docs/WEBSITE_ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/WEBSITE_ADVANCED.md -------------------------------------------------------------------------------- /docs/WEBSITE_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/WEBSITE_BASIC.md -------------------------------------------------------------------------------- /docs/WEBSITE_INTERMEDIATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/WEBSITE_INTERMEDIATE.md -------------------------------------------------------------------------------- /docs/WEB_APPLICATION_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/WEB_APPLICATION_BASIC.md -------------------------------------------------------------------------------- /docs/WEB_BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/docs/WEB_BASIC.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: '@vue/cli-plugin-unit-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/scraper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/scraper/index.js -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /tests/unit/data/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/ideahub/HEAD/tests/unit/data/index.spec.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | transpileDependencies: ['vuetify'], 3 | }; 4 | --------------------------------------------------------------------------------