Skip to content

Commit cf7d164

Browse files
init
0 parents  commit cf7d164

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+11281
-0
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

.eslintrc.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: [
7+
'plugin:vue/essential',
8+
'@vue/standard',
9+
'@vue/typescript/recommended'
10+
],
11+
parserOptions: {
12+
ecmaVersion: 2020
13+
},
14+
rules: {
15+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
17+
},
18+
overrides: [
19+
{
20+
files: [
21+
'**/__tests__/*.{j,t}s?(x)',
22+
'**/tests/unit/**/*.spec.{j,t}s?(x)'
23+
],
24+
env: {
25+
mocha: true
26+
}
27+
}
28+
]
29+
}

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
/tests/e2e/videos/
6+
/tests/e2e/screenshots/
7+
8+
9+
# local env files
10+
.env.local
11+
.env.*.local
12+
13+
# Log files
14+
npm-debug.log*
15+
yarn-debug.log*
16+
yarn-error.log*
17+
pnpm-debug.log*
18+
19+
# Editor directories and files
20+
.idea
21+
.vscode
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# kl_web
2+
3+
## Project setup
4+
```
5+
yarn install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
yarn serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
yarn build
16+
```
17+
18+
### Run your unit tests
19+
```
20+
yarn test:unit
21+
```
22+
23+
### Run your end-to-end tests
24+
```
25+
yarn test:e2e
26+
```
27+
28+
### Lints and fixes files
29+
```
30+
yarn lint
31+
```
32+
33+
### Customize configuration
34+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

Lines changed: 5 additions & 0 deletions
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+
}

cypress.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"pluginsFile": "tests/e2e/plugins/index.js"
3+
}

package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "kl_web",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"test:unit": "vue-cli-service test:unit",
9+
"test:e2e": "vue-cli-service test:e2e",
10+
"lint": "vue-cli-service lint"
11+
},
12+
"dependencies": {
13+
"core-js": "^3.6.5",
14+
"register-service-worker": "^1.7.1",
15+
"vue": "^2.6.11",
16+
"vue-class-component": "^7.2.3",
17+
"vue-property-decorator": "^9.1.2",
18+
"vue-router": "^3.2.0",
19+
"vuex": "^3.4.0"
20+
},
21+
"devDependencies": {
22+
"@types/chai": "^4.2.11",
23+
"@types/mocha": "^5.2.4",
24+
"@typescript-eslint/eslint-plugin": "^4.18.0",
25+
"@typescript-eslint/parser": "^4.18.0",
26+
"@vue/cli-plugin-babel": "~4.5.0",
27+
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
28+
"@vue/cli-plugin-eslint": "~4.5.0",
29+
"@vue/cli-plugin-pwa": "~4.5.0",
30+
"@vue/cli-plugin-router": "~4.5.0",
31+
"@vue/cli-plugin-typescript": "~4.5.0",
32+
"@vue/cli-plugin-unit-mocha": "~4.5.0",
33+
"@vue/cli-plugin-vuex": "~4.5.0",
34+
"@vue/cli-service": "~4.5.0",
35+
"@vue/eslint-config-standard": "^5.1.2",
36+
"@vue/eslint-config-typescript": "^7.0.0",
37+
"@vue/test-utils": "^1.0.3",
38+
"chai": "^4.1.2",
39+
"eslint": "^6.7.2",
40+
"eslint-plugin-import": "^2.20.2",
41+
"eslint-plugin-node": "^11.1.0",
42+
"eslint-plugin-promise": "^4.2.1",
43+
"eslint-plugin-standard": "^4.0.0",
44+
"eslint-plugin-vue": "^6.2.2",
45+
"sass": "^1.26.5",
46+
"sass-loader": "^8.0.2",
47+
"typescript": "~4.1.5",
48+
"vue-template-compiler": "^2.6.11"
49+
}
50+
}

public/favicon.ico

4.19 KB
Binary file not shown.
9.2 KB
Loading

0 commit comments

Comments
 (0)