mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
201 lines
6.5 KiB
JSON
201 lines
6.5 KiB
JSON
{
|
|
"name": "superProductivity",
|
|
"version": "2.9.3",
|
|
"description": "Personal Task Management App to help you with your daily struggle with JIRA etc.",
|
|
"main": "./electron/main.js",
|
|
"author": "johannesjo <contact@super-productivity.com> (http://super-productivity.com)",
|
|
"license": "MIT",
|
|
"homepage": "http://super-productivity.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/johannesjo/super-productivity.git"
|
|
},
|
|
"keywords": [
|
|
"ToDo",
|
|
"Task Management",
|
|
"Jira",
|
|
"GitHub",
|
|
"Time Tracking"
|
|
],
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "yarn electron:build && cross-env NODE_ENV=DEV electron .",
|
|
"startFrontend": "ng serve",
|
|
"buildFrontend": "ng build --aot --prod",
|
|
"buildFrontendElectron": "ng build --aot --prod --base-href=''",
|
|
"buildAllElectron": "yarn buildFrontendElectron && yarn electron:build",
|
|
"buildApp": "yarn buildAllElectron && yarn electron-builder",
|
|
"test": "ng test",
|
|
"lint": "ng lint",
|
|
"e2e": "ng e2e",
|
|
"electron": "NODE_ENV=PROD electron .",
|
|
"electron:build": "tsc -p tsconfig-electron.json",
|
|
"electron:watch": "tsc -p tsconfig-electron.json --watch",
|
|
"electronBuilderOnly": "electron-builder",
|
|
"pack": "electron-builder --dir",
|
|
"localInstall": "sudo echo 'Starting local install' && rm -Rf ./dist/ && rm -Rf ./app-builds/ && yarn buildAllElectron && electron-builder --linux && sudo dpkg -i app-builds/superProductivity*.deb",
|
|
"localInstall:mac": "sudo echo 'Starting local install' && yarn buildAllElectron && sudo echo '' && electron-builder && sudo cp -rf app-builds/mac/superProductivity.app/ /Applications/superProductivity.app",
|
|
"dist": "yarn buildAllElectron && electron-builder",
|
|
"distLinuxAndWin": "yarn buildAllElectron && electron-builder --linux --win",
|
|
"distWin": "yarn buildAllElectron && electron-builder --win",
|
|
"distWinEl": "electron-builder --win",
|
|
"pub": "yarn buildAllElectron && electron-builder -p always",
|
|
"release": "yarn release.changelog && yarn dist",
|
|
"release.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
|
|
"version": "yarn release.changelog && git add -A",
|
|
"buildSchema": "cd tools/schematics && yarn build && cd ../../ && yarn add file:./tools/schematics",
|
|
"int": "node ./tools/extract-i18n-single.js",
|
|
"int:watch": "node ./tools/extract-i18n-watch.js",
|
|
"intFind": "ngx-translate-extract --input ./src --output ./src/assets/i18n/*.json --sort --format namespaced-json --marker _",
|
|
"intClean": "ngx-translate-extract --input ./src --output ./src/assets/i18n/*.json --clean --sort --format namespaced-json --marker _"
|
|
},
|
|
"browserslist": [
|
|
"last 1 version",
|
|
"> 1%",
|
|
"maintained node versions",
|
|
"not dead"
|
|
],
|
|
"publish": [
|
|
{
|
|
"provider": "github",
|
|
"repo": "super-productivity",
|
|
"owner": "johannesjo"
|
|
}
|
|
],
|
|
"build": {
|
|
"appId": "superProductivity",
|
|
"files": [
|
|
"electron/**/*",
|
|
"!electron/**/*.ts",
|
|
"!electron/**/*.js.map",
|
|
"dist/**/*"
|
|
],
|
|
"directories": {
|
|
"output": "./app-builds"
|
|
},
|
|
"mac": {
|
|
"category": "productivity",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis",
|
|
"portable"
|
|
],
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"appx": {
|
|
"applicationId": "SuperProductivity",
|
|
"displayName": "Super Productivity",
|
|
"publisherDisplayName": "johannesjo",
|
|
"publisher": "CN=___-___",
|
|
"identityName": "___johannesjo.SuperProductivity"
|
|
},
|
|
"linux": {
|
|
"category": "Utility",
|
|
"target": [
|
|
"AppImage",
|
|
"snap",
|
|
"deb"
|
|
],
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"snap": {
|
|
"grade": "stable",
|
|
"stagePackages": [
|
|
"default"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"electron-dl": "^1.13.0",
|
|
"electron-localshortcut": "^3.1.0",
|
|
"electron-log": "^3.0.1",
|
|
"googleapis": "^40.0.0",
|
|
"jira-client-fork": "^4.2.1",
|
|
"moment-mini": "^2.22.1"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "0.800.2",
|
|
"@angular/animations": "^8.1.0",
|
|
"@angular/cdk": "^8.0.2",
|
|
"@angular/cli": "^8.0.2",
|
|
"@angular/common": "^8.1.0",
|
|
"@angular/compiler": "^8.1.0",
|
|
"@angular/compiler-cli": "^8.1.0",
|
|
"@angular/core": "^8.1.0",
|
|
"@angular/forms": "^8.1.0",
|
|
"@angular/language-service": "^8.1.0",
|
|
"@angular/material": "^8.0.2",
|
|
"@angular/platform-browser": "^8.1.0",
|
|
"@angular/platform-browser-dynamic": "^8.1.0",
|
|
"@angular/platform-server": "^8.1.0",
|
|
"@angular/pwa": "^0.10.5",
|
|
"@angular/router": "^8.1.0",
|
|
"@angular/service-worker": "^8.1.0",
|
|
"@biesbjerg/ngx-translate-extract": "^2.3.4",
|
|
"@ngrx/effects": "^8.1.0",
|
|
"@ngrx/entity": "^8.1.0",
|
|
"@ngrx/schematics": "^8.1.0",
|
|
"@ngrx/store": "8.1.0",
|
|
"@ngrx/store-devtools": "^8.1.0",
|
|
"@ngx-formly/core": "^5.2.0",
|
|
"@ngx-formly/material": "^5.2.0",
|
|
"@ngx-translate/core": "^11.0.1",
|
|
"@ngx-translate/http-loader": "^4.0.0",
|
|
"@schematics/angular": "^8.0.1",
|
|
"@types/jasmine": "^3.3.12",
|
|
"@types/jasminewd2": "~2.0.3",
|
|
"@types/moment-duration-format": "^2.2.2",
|
|
"@types/node": "^12.0.4",
|
|
"angular2-promise-buttons": "^3.0.1",
|
|
"chart.js": "^2.8.0",
|
|
"clipboard": "^2.0.1",
|
|
"codelyzer": "^5.0.1",
|
|
"conventional-changelog-cli": "^2.0.21",
|
|
"core-js": "^3.1.3",
|
|
"cross-env": "^5.2.0",
|
|
"electron": "5.0.7",
|
|
"electron-builder": "^21.0.15",
|
|
"electron-reload": "^1.2.5",
|
|
"hammerjs": "^2.0.8",
|
|
"husky": "^2.3.0",
|
|
"jasmine-core": "^3.4.0",
|
|
"jasmine-marbles": "^0.5.0",
|
|
"jasmine-spec-reporter": "^4.2.1",
|
|
"jo": "file:./tools/schematics",
|
|
"karma": "^4.1.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cli": "^2.0.0",
|
|
"karma-coverage-istanbul-reporter": "~2.0.0",
|
|
"karma-jasmine": "^2.0.1",
|
|
"karma-jasmine-html-reporter": "^1.4.2",
|
|
"localforage": "^1.7.3",
|
|
"lz-string": "^1.4.4",
|
|
"moment-duration-format": "^2.2.2",
|
|
"ng-pick-datetime": "^7.0.0",
|
|
"ng2-charts": "^2.3.0",
|
|
"ng2-charts-schematics": "^0.1.7",
|
|
"ng2-dragula": "^2.1.1",
|
|
"ngx-electron": "^2.1.1",
|
|
"ngx-markdown": "^8.0.2",
|
|
"node-sass": "^4.12.0",
|
|
"protractor": "^5.4.2",
|
|
"rxjs": "^6.5.2",
|
|
"rxjs-tslint": "0.1.5",
|
|
"sass-loader": "^7.1.0",
|
|
"shortid": "^2.2.14",
|
|
"style-loader": "^0.23.1",
|
|
"throttle-debounce": "^2.0.1",
|
|
"ts-node": "~8.2.0",
|
|
"tslint": "^5.16.0",
|
|
"typescript": "~3.4.5",
|
|
"zone.js": "^0.9.1"
|
|
}
|
|
}
|