- Updated repository information like README, License, and app's version to 0.1.0 for better versioning; - (Possibly) fixed PWA and page theme features; - Fixed linting code format.
48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"name": "ToToday",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nuxt",
|
|
"build": "nuxt build && nuxt generate",
|
|
"start": "nuxt start",
|
|
"build:start": "npm run build && npm run start",
|
|
"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": "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"
|
|
},
|
|
"dependencies": {
|
|
"@nuxtjs/pwa": "^3.3.5",
|
|
"core-js": "^3.20.3",
|
|
"nuxt": "^2.15.8",
|
|
"vue": "^2.6.14",
|
|
"vue-server-renderer": "^2.6.14",
|
|
"vue-template-compiler": "^2.6.14",
|
|
"webpack": "^4.46.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.16.3",
|
|
"@nuxt/image": "^0.6.0",
|
|
"@nuxt/types": "^2.15.8",
|
|
"@nuxt/typescript-build": "^2.1.0",
|
|
"@nuxtjs/color-mode": "^2.1.1",
|
|
"@nuxtjs/eslint-config-typescript": "^8.0.0",
|
|
"@nuxtjs/eslint-module": "^3.0.2",
|
|
"@nuxtjs/stylelint-module": "^4.1.0",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-nuxt": "^3.1.0",
|
|
"eslint-plugin-vue": "^8.3.0",
|
|
"postcss-html": "^1.3.0",
|
|
"prettier": "^2.5.1",
|
|
"sass": "^1.48.0",
|
|
"sass-loader": "^10.2.1",
|
|
"stylelint": "^14.1.0",
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
"stylelint-config-recommended-vue": "^1.1.0",
|
|
"stylelint-config-standard": "^24.0.0"
|
|
}
|
|
}
|