Add template and create register
Showing
assets/css/custom.css
0 → 100644
layouts/error.vue
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
| { | { | ||
| "name": "chat", | "name": "chat", | ||
| "version": "1.0.0", | "version": "1.0.0", | ||
| "license": "UNLICENSED", | |||
| "private": true, | "private": true, | ||
| "scripts": { | "scripts": { | ||
| "dev": "nuxt", | "dev": "nuxt", | ||
| ... | @@ -11,19 +12,26 @@ | ... | @@ -11,19 +12,26 @@ |
| "lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore", | "lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore", | ||
| "lint": "yarn lint:js && yarn lint:style" | "lint": "yarn lint:js && yarn lint:style" | ||
| }, | }, | ||
| "lint-staged": { | |||
| "*.{js,vue}": "eslint", | |||
| "*.{css,vue}": "stylelint" | |||
| }, | |||
| "husky": { | "husky": { | ||
| "hooks": { | "hooks": { | ||
| "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | |||
| "pre-commit": "lint-staged" | "pre-commit": "lint-staged" | ||
| } | } | ||
| }, | }, | ||
| "lint-staged": { | |||
| "*.{js,jsx,ts,tsx}": [ | |||
| "prettier --write", | |||
| "eslint --fix", | |||
| "git add" | |||
| ], | |||
| "*.{html,css,less,ejs,json}": [ | |||
| "prettier --write", | |||
| "git add" | |||
| ] | |||
| }, | |||
| "dependencies": { | "dependencies": { | ||
| "@nuxt/content": "^1.9.0", | "@nuxt/content": "^1.9.0", | ||
| "@nuxtjs/axios": "^5.12.2", | "@nuxtjs/auth-next": "5.0.0-1607693598.34d83ea", | ||
| "@nuxtjs/axios": "^5.12.3", | |||
| "@nuxtjs/pwa": "^3.0.2", | "@nuxtjs/pwa": "^3.0.2", | ||
| "core-js": "^3.6.5", | "core-js": "^3.6.5", | ||
| "nuxt": "^2.14.6" | "nuxt": "^2.14.6" | ||
| ... | ... |
pages/login.vue
0 → 100644
pages/register/index.vue
0 → 100644
plugins/axios.js
0 → 100644
store/index.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
Please
register
or
sign in
to comment