Initial commit
Showing
.babelrc
0 → 100644
.editorconfig
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
.prettierrc
0 → 100644
Dockerfile.local
0 → 100644
README.md
0 → 100644
assets/fonts/sansserif.ttf
0 → 100755
File added
assets/images/icons/user.png
0 → 100644
82 KB
assets/styles/app.scss
0 → 100644
assets/styles/fonts.scss
0 → 100644
assets/styles/footer.scss
0 → 100644
assets/styles/header.scss
0 → 100644
assets/styles/section.scss
0 → 100644
docker-compose.local.yml
0 → 100644
jest.config.js
0 → 100644
layouts/Default.vue
0 → 100644
layouts/Documents.vue
0 → 100644
nuxt.config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "app", | |||
"version": "1.0.0", | |||
"private": true, | |||
"scripts": { | |||
"dev": "nuxt", | |||
"build": "nuxt build", | |||
"start": "nuxt start", | |||
"generate": "nuxt generate", | |||
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .", | |||
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore", | |||
"lint:prettier": "prettier --check .", | |||
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier", | |||
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix && npm run lint:style -- --fix", | |||
"test": "jest" | |||
}, | |||
"dependencies": { | |||
"core-js": "^3.25.3", | |||
"nuxt": "^2.15.8", | |||
"vue": "^2.7.10", | |||
"vue-server-renderer": "^2.7.10", | |||
"vue-template-compiler": "^2.7.10" | |||
}, | |||
"devDependencies": { | |||
"@babel/eslint-parser": "^7.19.1", | |||
"@nuxtjs/eslint-config": "^11.0.0", | |||
"@nuxtjs/eslint-module": "^3.1.0", | |||
"@nuxtjs/stylelint-module": "^4.1.0", | |||
"@vue/test-utils": "^1.3.0", | |||
"babel-core": "7.0.0-bridge.0", | |||
"babel-jest": "^29.1.2", | |||
"eslint": "^8.24.0", | |||
"eslint-config-prettier": "^8.5.0", | |||
"eslint-plugin-jest": "^27.0.4", | |||
"eslint-plugin-nuxt": "^4.0.0", | |||
"eslint-plugin-vue": "^9.5.1", | |||
"jest": "^29.1.2", | |||
"jest-environment-jsdom": "^29.1.2", | |||
"postcss-html": "^1.5.0", | |||
"prettier": "^2.7.1", | |||
"sass": "^1.60.0", | |||
"sass-loader": "^10.4.1", | |||
"stylelint": "^14.13.0", | |||
"stylelint-config-prettier": "^9.0.3", | |||
"stylelint-config-recommended-vue": "^1.4.0", | |||
"stylelint-config-standard": "^28.0.0", | |||
"vue-jest": "^3.0.4" | |||
}, | |||
"browserslist": [ | |||
">0.3%", | |||
"not ie 11", | |||
"not dead", | |||
"not op_mini all", | |||
"last 3 version", | |||
"Chrome >= 35", | |||
"Firefox >= 38", | |||
"Edge >= 10", | |||
"Explorer >= 10", | |||
"ie >= 10", | |||
"iOS >= 8", | |||
"Safari >= 8", | |||
"Android 2.3", | |||
"Android >= 4", | |||
"Opera >= 12" | |||
] | |||
} |
pages/About.vue
0 → 100644
pages/Index.vue
0 → 100644
pages/documents/Index.vue
0 → 100644
static/favicon.ico
0 → 100644
8.43 KB
stylelint.config.js
0 → 100644