summaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-08-15 19:02:17 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-15 19:02:17 +0200
commit0f516aa9d728ce9fe50da9dbd8767f0e23f99212 (patch)
treea6097dc7e5d94d06e99c65fdfe160e824395f50c /package.json
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
parent71592249b2dd669b6f24f37bfb7b0f4e43b74998 (diff)
downloadmullvadvpn-0f516aa9d728ce9fe50da9dbd8767f0e23f99212.tar.xz
mullvadvpn-0f516aa9d728ce9fe50da9dbd8767f0e23f99212.zip
Merge branch 'add-yarn-workspaces'
Diffstat (limited to 'package.json')
-rw-r--r--package.json95
1 files changed, 0 insertions, 95 deletions
diff --git a/package.json b/package.json
deleted file mode 100644
index d570c5effe..0000000000
--- a/package.json
+++ /dev/null
@@ -1,95 +0,0 @@
-{
- "name": "mullvad-vpn",
- "version": "2018.2.0",
- "productName": "Mullvad VPN",
- "description": "Mullvad VPN client",
- "main": "init.js",
- "author": {
- "name": "Mullvad VPN",
- "email": "support@mullvad.net"
- },
- "repository": "https://github.com/mullvad/mullvadvpn-app",
- "license": "GPL-3.0",
- "dependencies": {
- "babel-runtime": "^6.22.0",
- "chai-as-promised": "^7.1.1",
- "connected-react-router": "^4.3.0",
- "d3-geo-projection": "^2.3.2",
- "electron-log": "^2.2.8",
- "eslint-plugin-promise": "^3.8.0",
- "history": "^4.6.1",
- "jsonrpc-lite": "^1.2.3",
- "mkdirp": "^0.5.1",
- "moment": "^2.20.1",
- "rbush": "^2.0.2",
- "react": "^16.0.0",
- "react-dom": "^16.0.0",
- "react-native": "^0.53.3",
- "react-native-windows": "^0.51.0-rc.1",
- "react-redux": "^5.0.7",
- "react-router": "^4.3.1",
- "react-simple-maps": "^0.10.1",
- "reactxp": "^1.3.3",
- "redux": "^4.0.0",
- "redux-thunk": "^2.3.0",
- "uuid": "^3.0.1",
- "validated": "^1.3.0"
- },
- "optionalDependencies": {
- "nseventmonitor": "https://github.com/mullvad/NSEventMonitor.git#0.0.9",
- "windows-security": "https://github.com/mullvad/windows-security.git#0.0.5"
- },
- "devDependencies": {
- "babel-cli": "^6.22.2",
- "babel-core": "^6.25.0",
- "babel-eslint": "^8.2.3",
- "babel-plugin-transform-builtin-extend": "^1.1.2",
- "babel-plugin-transform-class-properties": "^6.24.1",
- "babel-plugin-transform-object-rest-spread": "^6.26.0",
- "babel-preset-env": "^1.7.0",
- "babel-preset-react": "^6.22.0",
- "browser-sync": "^2.23.6",
- "chai": "^4.1.0",
- "chai-spies": "^1.0.0",
- "cross-env": "^5.1.3",
- "electron": "^2.0.2",
- "electron-builder": "^20.20.4",
- "electron-devtools-installer": "^2.2.1",
- "electron-mocha": "^6.0.4",
- "enzyme": "^3.2.0",
- "enzyme-adapter-react-16": "^1.1.0",
- "eslint": "^4.19.1",
- "eslint-config-prettier": "^2.9.0",
- "eslint-plugin-flowtype": "^2.50.0",
- "eslint-plugin-react": "^7.10.0",
- "flow-bin": "^0.78.0",
- "flow-typed": "^2.5.1",
- "mock-socket": "^8.0.2",
- "npm-run-all": "^4.0.1",
- "prettier": "1.14.0",
- "rimraf": "^2.5.4"
- },
- "scripts": {
- "android": "react-native run-android",
- "postinstall": "electron-builder install-app-deps",
- "develop": "cross-env BABEL_ENV=electron npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
- "test": "cross-env BABEL_ENV=electron electron-mocha --renderer -R spec --require babel-core/register --require-main test/setup/main.js --preload test/setup/renderer.js test/*.spec.js test/**/*.spec.js",
- "lint": "eslint --no-ignore scripts app test *.js",
- "format": "npm run private:format -- --write",
- "check-format": "npm run private:format -- --list-different",
- "flow": "flow",
- "pack:mac": "cross-env BABEL_ENV=electron run-s private:clean private:compile private:build:mac private:postbuild:mac",
- "pack:win": "cross-env BABEL_ENV=electron run-s private:clean private:compile private:build:win",
- "pack:linux": "cross-env BABEL_ENV=electron run-s private:clean private:compile private:build:linux",
- "private:build:mac": "npm run private:build -- --mac",
- "private:postbuild:mac": "rimraf ./dist/mac",
- "private:build:win": "npm run private:build -- --win",
- "private:build:linux": "npm run private:build -- --linux",
- "private:build": "electron-builder",
- "private:watch": "cross-env BABEL_ENV=electron npm run private:compile -- --source-maps true --watch --skip-initial-build",
- "private:serve": "cross-env BABEL_ENV=electron babel-node scripts/serve.js",
- "private:compile": "babel app/ --copy-files --out-dir build",
- "private:clean": "rimraf build",
- "private:format": "cross-env prettier 'app/**/*.js' 'test/**/*.js' 'scripts/*.js'"
- }
-}