Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
init project
Browse files Browse the repository at this point in the history
  • Loading branch information
devfake committed Aug 6, 2018
1 parent 8920157 commit 741caa7
Show file tree
Hide file tree
Showing 33 changed files with 22,508 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GOOGLE_API_KEY=
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
/node_modules
dist

# local env files
.env
.env.local
.env.*.local

# Log files
/npm-debug.log*
/yarn-debug.log*
/yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
5 changes: 5 additions & 0 deletions .postcssrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ["@vue/app"]
};
12,633 changes: 12,633 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "years-to-read",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --watch",
"prod": "vue-cli-service build --mode production"
},
"dependencies": {
"axios": "^0.18.0",
"debounce": "^1.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"vue": "^2.5.16",
"vue-js-modal": "^1.3.16"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-rc.10",
"@vue/cli-service": "^3.0.0-rc.10",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.16"
}
}
Loading

0 comments on commit 741caa7

Please sign in to comment.