PicList/package.json

95 lines
2.8 KiB
JSON
Raw Normal View History

2017-11-27 19:21:12 -05:00
{
"name": "picgo",
2022-01-05 10:13:59 -05:00
"version": "2.3.1-beta.1",
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",
2020-01-01 05:18:51 -05:00
"release": "vue-cli-service electron:build --publish always"
},
2019-12-19 06:17:21 -05: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": {
2021-08-01 02:50:25 -04:00
"@picgo/store": "^1.0.3",
"axios": "^0.19.0",
2019-12-19 06:17:21 -05:00
"core-js": "^3.3.2",
"element-ui": "^2.13.0",
2019-01-12 06:19:26 -05:00
"fix-path": "^2.1.0",
"fs-extra": "^10.0.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.4.24",
"qrcode.vue": "^1.7.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",
2019-12-19 06:17:21 -05:00
"vue-router": "^3.1.3"
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/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",
"@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",
"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"
2017-11-27 19:21:12 -05:00
}
}