You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
2 months ago
|
{
|
||
|
"name": "novo-pc",
|
||
|
"version": "1.0.0",
|
||
|
"private": true,
|
||
|
"scripts": {
|
||
|
"dev": "nuxt",
|
||
|
"build": "cross-env process.env.VUE_APP_TITLE=test nuxt build",
|
||
|
"build:prod": "cross-env process.env.VUE_APP_TITLE=production nuxt build",
|
||
|
"start": "node ./server.js",
|
||
|
"start_prod": "NODE_ENV=production node ./server.js",
|
||
|
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
|
||
|
"lint:js:fix": "eslint --ext \".js,.vue\" --ignore-path .gitignore --fix .",
|
||
|
"format": "prettier --write \"./**/*.vue\" \"./**/*.js\" \"./**/*.scss\" ",
|
||
|
"format1": "prettier ",
|
||
|
"lint:prettier": "prettier --check \"./**/*.vue\" \"./**/*.js\"",
|
||
|
"lint": "npm run lint:js && npm run lint:prettier",
|
||
|
"lintfix": "prettier --write --list-different \"./**/*.vue\" \"./**/*.js\" && npm run lint:js:fix"
|
||
|
},
|
||
|
"husky": {
|
||
|
"hooks": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
}
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.{js,vue}": "eslint --cache",
|
||
|
"*.**": "prettier --check --ignore-unknown"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@nuxtjs/axios": "^5.13.6",
|
||
|
"@nuxtjs/robots": "^2.5.0",
|
||
|
"@nuxtjs/style-resources": "^1.2.1",
|
||
|
"core-js": "^3.19.3",
|
||
|
"element-ui": "^2.15.6",
|
||
|
"koa": "^2.13.4",
|
||
|
"moment": "^2.29.1",
|
||
|
"nuxt": "^2.15.8",
|
||
|
"vue": "^2.6.14",
|
||
|
"vue-qr": "^3.2.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@nuxtjs/eslint-config": "^6.0.1",
|
||
|
"@nuxtjs/eslint-module": "^3.0.2",
|
||
|
"@nuxtjs/proxy": "^2.1.0",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.29.0",
|
||
|
"eslint-config-prettier": "^8.3.0",
|
||
|
"eslint-plugin-nuxt": "^2.0.0",
|
||
|
"eslint-plugin-vue": "^7.12.1",
|
||
|
"husky": "^7.0.4",
|
||
|
"lint-staged": "^12.1.3",
|
||
|
"node-sass": "^6.0.1",
|
||
|
"prettier": "^2.5.1",
|
||
|
"qs": "^6.10.2",
|
||
|
"sass-loader": "^10.2.0"
|
||
|
}
|
||
|
}
|