feat: mobile app package (#1075)

This commit is contained in:
Mo
2022-06-09 09:45:15 -05:00
committed by GitHub
parent 58b63898de
commit 8248a38280
336 changed files with 47696 additions and 22563 deletions

View File

@@ -14,13 +14,12 @@
"change-version": "node ../../scripts/desktop/change-version.mjs",
"clean:build": "rimraf app/dist/",
"clean:tests": "rimraf test/data/tmp/",
"clean": "npm-run-all --parallel clean:*",
"dev": "NODE_ENV=development webpack --config desktop.webpack.dev.js --watch",
"format": "prettier --write .",
"lint:eslint": "eslint app/index.ts app/application.ts app/javascripts/**/*.ts",
"lint:formatting": "prettier --check .",
"lint:types": "tsc --noEmit",
"lint": "npm-run-all --parallel lint:*",
"lint": "yarn lint:formatting && yarn lint:eslint",
"tsc": "tsc --noEmit",
"postinstall": "electron-builder install-app-deps",
"release": "node ../../scripts/desktop/build.mjs mainstream",
"release:mac": "node ../../scripts/desktop/build.mjs mac",
@@ -29,19 +28,19 @@
"ava": "rimraf test/data/tmp && ava --serial"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"@standardnotes/web": "*",
"axios": "^0.27.2",
"compare-versions": "^4.1.3",
"decrypt": "github:standardnotes/decrypt#master",
"dotenv": "^16.0.0",
"electron": "17.4.2",
"electron-log": "^4.4.6",
"electron-updater": "^5.0.1",
"fs-extra": "^10.1.0",
"mime-types": "^2.1.35",
"mobx": "^6.5.0",
"@standardnotes/web": "*",
"@electron/remote": "^2.0.8",
"electron": "17.4.2",
"lodash": "^4.17.21",
"dotenv": "^16.0.0"
"mime-types": "^2.1.35",
"mobx": "^6.5.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
@@ -50,11 +49,9 @@
"@standardnotes/electron-clear-data": "1.1.1",
"@types/lodash": "^4.14.182",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.31",
"@types/node": "15",
"@types/proxyquire": "^1.3.28",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"ava": "^4.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
@@ -62,7 +59,7 @@
"copy-webpack-plugin": "^10.2.4",
"electron-builder": "23.0.3",
"electron-notarize": "^1.2.1",
"eslint": "^8.14.0",
"eslint": "*",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
@@ -70,17 +67,14 @@
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"mime-types": "^2.1.35",
"npm-run-all": "^4.1.5",
"pre-push": "^0.1.2",
"prettier": "^2.6.2",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"typescript": "*",
"webpack": "*",
"webpack-merge": "^5.8.0"
},
"build": {