2023-01-01 16:16:42 +00:00
|
|
|
{
|
|
|
|
"name": "frontend",
|
2023-01-01 16:23:05 +00:00
|
|
|
"version": "0.1.0",
|
2023-01-01 16:16:42 +00:00
|
|
|
"private": true,
|
2023-01-03 09:31:15 +00:00
|
|
|
"config": {
|
|
|
|
"nuxt": {
|
|
|
|
"host": "0.0.0.0",
|
|
|
|
"port": "3000"
|
|
|
|
}
|
|
|
|
},
|
2023-01-01 16:16:42 +00:00
|
|
|
"scripts": {
|
|
|
|
"dev": "nuxt",
|
|
|
|
"build": "nuxt build",
|
|
|
|
"start": "nuxt start",
|
|
|
|
"generate": "nuxt generate",
|
|
|
|
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
|
|
|
|
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
|
|
|
|
"lint:prettier": "prettier --check .",
|
|
|
|
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
|
2023-01-01 16:38:17 +00:00
|
|
|
"lintfix": "prettier --write '**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,scss,sass}' && prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
|
2023-01-01 16:36:44 +00:00
|
|
|
"prep:prepare": "husky install",
|
2023-01-01 16:16:42 +00:00
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,ts,vue}": "eslint --cache",
|
|
|
|
"*.{css,scss,sass,html,vue}": "stylelint",
|
|
|
|
"*.**": "prettier --check --ignore-unknown"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@nuxt/content": "^1.0.0",
|
2023-01-02 16:34:56 +00:00
|
|
|
"@nuxt/vue-app": "^2.15.8",
|
2023-01-01 16:16:42 +00:00
|
|
|
"@nuxtjs/axios": "^5.13.6",
|
2023-01-02 16:34:56 +00:00
|
|
|
"@nuxtjs/composition-api": "^0.33.1",
|
2023-01-01 16:16:42 +00:00
|
|
|
"@nuxtjs/pwa": "^3.3.5",
|
|
|
|
"core-js": "^3.25.3",
|
|
|
|
"nuxt": "^2.15.8",
|
|
|
|
"pug": "^3.0.2",
|
|
|
|
"pug-plain-loader": "^1.1.0",
|
|
|
|
"vue": "^2.7.10",
|
|
|
|
"vue-server-renderer": "^2.7.10",
|
|
|
|
"vue-template-compiler": "^2.7.10"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
|
|
"@commitlint/cli": "^17.1.2",
|
|
|
|
"@commitlint/config-conventional": "^17.1.0",
|
|
|
|
"@nuxt/postcss8": "^1.1.3",
|
|
|
|
"@nuxt/types": "^2.15.8",
|
|
|
|
"@nuxt/typescript-build": "^2.1.0",
|
|
|
|
"@nuxtjs/eslint-config-typescript": "^11.0.0",
|
|
|
|
"@nuxtjs/eslint-module": "^3.1.0",
|
|
|
|
"@nuxtjs/google-fonts": "^2.0.0",
|
2023-01-03 01:57:12 +00:00
|
|
|
"@nuxtjs/style-resources": "^1.2.1",
|
2023-01-01 16:16:42 +00:00
|
|
|
"@nuxtjs/stylelint-module": "^4.1.0",
|
|
|
|
"@nuxtjs/tailwindcss": "^5.3.3",
|
|
|
|
"@vue/test-utils": "^1.3.0",
|
|
|
|
"autoprefixer": "^10.4.13",
|
|
|
|
"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",
|
2023-01-01 16:27:44 +00:00
|
|
|
"husky": "^8.0.2",
|
2023-01-01 16:16:42 +00:00
|
|
|
"jest": "^29.1.2",
|
|
|
|
"jest-environment-jsdom": "^29.1.2",
|
|
|
|
"lint-staged": "^13.0.3",
|
|
|
|
"postcss": "^8.4.20",
|
|
|
|
"postcss-html": "^1.5.0",
|
2023-01-03 01:57:12 +00:00
|
|
|
"prettier": "^2.8.1",
|
2023-01-01 16:16:42 +00:00
|
|
|
"sass": "^1.57.1",
|
|
|
|
"stylelint": "^14.13.0",
|
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
|
|
"stylelint-config-recommended-vue": "^1.4.0",
|
|
|
|
"stylelint-config-standard": "^28.0.0",
|
|
|
|
"tailwindcss": "^3.2.4",
|
|
|
|
"ts-jest": "^29.0.3",
|
|
|
|
"vue-jest": "^3.0.4"
|
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"@nuxt/kit": "3.0.0-rc.13"
|
|
|
|
}
|
|
|
|
}
|