This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ToToday.app/package.json
Guz e3efc2df91 'tiny' fix: repository info, code style, and bugs.
- 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.
2022-01-19 16:58:55 -03:00

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"
}
}