Skip to content

Commit 80f3d9e

Browse files
committed
v1
1 parent 1b6f32f commit 80f3d9e

17 files changed

+614
-0
lines changed

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.github/FUNDING.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
github: Neos21
2+
patreon: Neos21
3+
custom:
4+
- 'http://neo.s21.xrea.com/'
5+
- 'https://neos21.hatenablog.com/'
6+
- 'https://neos21.github.io/'

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.DS_Store
2+
Thumbs.db
3+
node_modules/
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
*.log*
11+
12+
# Editor directories and files
13+
*.suo
14+
*.ntvs*
15+
*.njsproj
16+
*.sln
17+
*.sw?
18+
.vscode/

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# List Repos : Show Your All GitHub Repositories
2+
3+
__[Enter The Web App](https://neos21.github.io/list-repos/)__
4+
5+
6+
## Project Setup
7+
8+
```sh
9+
$ npm install
10+
11+
$ npm start
12+
$ npm run serve
13+
14+
$ npm run build
15+
```
16+
17+
## Author
18+
19+
[Neo](http://neo.s21.xrea.com/)
20+
21+
22+
## Links
23+
24+
- [Neo's World](http://neo.s21.xrea.com/)
25+
- [Corredor](https://neos21.hatenablog.com/)
26+
- [Murga](https://neos21.hatenablog.jp/)
27+
- [El Mylar](https://neos21.hateblo.jp/)
28+
- [Neo's GitHub Pages](https://neos21.github.io/)
29+
- [GitHub - Neos21](https://github.com/Neos21/)

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
};

docs/css/app.593349ad.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html lang=ja><head><meta charset=UTF-8><meta http-equiv=X-UA-Compatible content="IE=Edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>List Repos</title><link href=css/app.593349ad.css rel=preload as=style><link href=js/app.58f3c38f.js rel=preload as=script><link href=js/chunk-vendors.8369b030.js rel=preload as=script><link href=css/app.593349ad.css rel=stylesheet></head><body><noscript>Please Enable JavaScript!</noscript><div id=app></div><script src=js/chunk-vendors.8369b030.js></script><script src=js/app.58f3c38f.js></script></body></html>

docs/js/app.58f3c38f.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/js/chunk-vendors.8369b030.js

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "list-repos",
3+
"description": "Show Your All GitHub Repositories",
4+
"private": true,
5+
"scripts": {
6+
"start": "npm run serve",
7+
"serve": "vue-cli-service serve",
8+
"build": "vue-cli-service build"
9+
},
10+
"author": "Neo <[email protected]> (http://neo.s21.xrea.com/)",
11+
"license": "MIT",
12+
"homepage": "https://github.com/Neos21/list-repos#readme",
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/Neos21/list-repos.git"
16+
},
17+
"bugs": {
18+
"url": "https://github.com/Neos21/list-repos/issues"
19+
},
20+
"funding": {
21+
"type": "github",
22+
"url": "https://github.com/sponsors/Neos21"
23+
},
24+
"dependencies": {
25+
"core-js": "3.6.5",
26+
"vue": "2.6.11",
27+
"vue-class-component": "7.2.3",
28+
"vue-property-decorator": "8.5.1"
29+
},
30+
"devDependencies": {
31+
"@vue/cli-plugin-babel": "4.4.6",
32+
"@vue/cli-plugin-typescript": "4.4.6",
33+
"@vue/cli-service": "4.4.6",
34+
"node-sass": "4.14.1",
35+
"sass-loader": "8.0.2",
36+
"typescript": "3.9.6",
37+
"vue-template-compiler": "2.6.11"
38+
}
39+
}

public/index.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="icon" href="/favicon.ico">
8+
<title>List Repos</title>
9+
</head>
10+
<body>
11+
<noscript>Please Enable JavaScript!</noscript>
12+
<div id="app"></div>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)