PicList/package.json

105 lines
3.2 KiB
JSON
Raw Normal View History

2017-11-27 19:21:12 -05:00
{
"name": "picgo",
2022-09-03 23:20:39 -04:00
"version": "2.3.1-beta.6",
2019-12-19 06:17:21 -05:00
"private": true,
2017-11-27 19:21:12 -05:00
"scripts": {
"dev": "vue-cli-service electron:serve",
"build": "vue-cli-service electron:build",
2019-12-19 06:17:21 -05:00
"lint": "vue-cli-service lint",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/",
2019-12-19 06:17:21 -05:00
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"cz": "git-cz",
2019-12-19 06:17:21 -05:00
"bump": "bump-version",
"release": "vue-cli-service electron:build --publish always",
2022-08-20 04:44:55 -04:00
"upload-dist": "node ./scripts/upload-dist-to-cos.js",
"gen-i18n": "node ./scripts/gen-i18n-types.js"
},
2022-06-12 08:25:03 -04:00
"main": "background.js",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
2017-11-27 19:21:12 -05:00
},
"dependencies": {
2022-02-20 04:37:40 -05:00
"@picgo/i18n": "^1.0.0",
"@picgo/store": "^2.0.4",
"axios": "^0.19.0",
"compare-versions": "^4.1.3",
2019-12-19 06:17:21 -05:00
"core-js": "^3.3.2",
"element-ui": "^2.13.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
2019-12-19 06:17:21 -05:00
"keycode": "^2.2.0",
2017-11-29 10:13:35 -05:00
"lodash-id": "^0.14.0",
2017-11-27 19:21:12 -05:00
"lowdb": "^1.0.0",
"picgo": "^1.5.0-alpha.10",
"qrcode.vue": "^1.7.0",
2022-01-09 21:20:56 -05:00
"shell-path": "2.1.0",
"uuidv4": "^6.2.11",
2019-12-19 06:17:21 -05:00
"vue": "^2.6.10",
"vue-gallery": "^2.0.1",
2018-06-26 09:11:04 -04:00
"vue-lazyload": "^1.2.6",
"vue-router": "^3.1.3",
"write-file-atomic": "^4.0.1"
2017-11-27 19:21:12 -05:00
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@picgo/bump-version": "^1.1.2",
"@types/fs-extra": "^9.0.13",
2019-12-19 06:17:21 -05:00
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^4.0.5",
2019-12-19 06:17:21 -05:00
"@types/lowdb": "^1.0.9",
"@types/node": "^16.10.2",
2019-12-19 06:17:21 -05:00
"@types/request-promise-native": "^1.0.17",
"@types/semver": "^7.3.8",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
2019-12-19 06:17:21 -05:00
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-router": "^4.0.0",
"@vue/cli-plugin-typescript": "^4.5.13",
2019-12-19 06:17:21 -05:00
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
2019-12-19 06:17:21 -05:00
"conventional-changelog": "^3.1.18",
"cz-customizable": "^6.2.0",
"dotenv": "^16.0.1",
"electron": "^16.0.6",
"electron-devtools-installer": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": ">=16.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.0.0",
2019-12-19 06:17:21 -05:00
"husky": "^3.1.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"typescript": "^4.4.3",
"vue-cli-plugin-electron-builder": "^2.1.1",
2019-12-19 06:17:21 -05:00
"vue-property-decorator": "^8.3.0",
"vue-template-compiler": "^2.6.10"
},
"resolutions": {
"@types/node": "^16.10.2",
"vue-cli-plugin-electron-builder/**/electron-builder": "23.3.3"
2017-11-27 19:21:12 -05:00
}
}