package.json 7.42 KiB
Newer Older
Amaury Martiny's avatar
Amaury Martiny committed
{
Amaury Martiny's avatar
Amaury Martiny committed
  "name": "parity-ui",
Amaury Martiny's avatar
Amaury Martiny committed
  "version": "0.2.0",
  "description": "The Electron app for Parity UI",
Amaury Martiny's avatar
Amaury Martiny committed
  "main": ".build/electron/index.js",
  "jsnext:main": ".build/electron/index.js",
    "name": "Parity Technologies",
  "maintainers": [
    "Jaco Greeff",
    "Nicolas Gotchac"
  ],
  "contributors": [
    "Jannis Redmann"
  ],
  "license": "GPL-3.0",
  "repository": {
    "type": "git",
Amaury Martiny's avatar
Amaury Martiny committed
    "url": "git+https://github.com/parity-js/shell.git"
Amaury Martiny's avatar
Amaury Martiny committed
  },
  "keywords": [
    "Ethereum",
    "Parity"
  ],
  "parity": {
    "channel": "beta"
  },
Amaury Martiny's avatar
Amaury Martiny committed
  "scripts": {
    "build": "npm run build:inject && npm run build:app && npm run build:electron && npm run build:embed",
    "build:app": "webpack --config webpack/app",
    "build:electron": "webpack --config webpack/electron",
    "build:inject": "webpack --config webpack/inject",
    "build:embed": "cross-env EMBED=1 node webpack/embed",
    "build:i18n": "npm run clean && npm run build && babel-node ./scripts/build-i18n.js",
    "ci:build": "cross-env NODE_ENV=production npm run build",
    "clean": "rimraf ./.build ./.coverage ./.happypack",
    "coveralls": "npm run testCoverage && coveralls < coverage/lcov.info",
Amaury Martiny's avatar
Amaury Martiny committed
    "electron": "npm run build && electron .build/electron/",
Amaury Martiny's avatar
Amaury Martiny committed
    "electron:dev": "electron electron/ --ui-dev",
    "lint": "npm run lint:css && npm run lint:js",
    "lint:cached": "npm run lint:css && npm run lint:js:cached",
    "lint:css": "stylelint ./src/**/*.css",
    "lint:fix": "npm run lint:js:fix",
    "lint:i18n": "babel-node ./scripts/lint-i18n.js",
    "lint:js": "eslint --ignore-path .gitignore ./src/",
    "lint:js:cached": "eslint --cache --ignore-path .gitignore ./src/",
    "lint:js:fix": "eslint --fix --ignore-path .gitignore ./src/",
Amaury Martiny's avatar
Amaury Martiny committed
    "release": "npm run ci:build && electron-builder --config electron/config.json",
    "start": "npm run clean && npm install && npm run build:inject && npm run start:app",
    "start:app": "node webpack/dev.server",
    "test": "cross-env NODE_ENV=test mocha 'src/**/*.spec.js'",
    "test:coverage": "cross-env NODE_ENV=test istanbul cover _mocha -- 'src/**/*.spec.js'"
  },
  "devDependencies": {
    "@parity/dapp-dapp-methods": "js-dist-paritytech/dapp-dapp-methods",
    "@parity/dapp-dapp-visible": "js-dist-paritytech/dapp-dapp-visible",
    "@parity/dapp-dappreg": "parity-js/dapp-dappreg#66f2e52dfa9a783cc0ca616505460e5e34ebdf54",
    "@parity/dapp-githubhint": "parity-js/dapp-githubhint#b5cdef016e8bead7669ca077be526897ee42f83a",
    "@parity/dapp-localtx": "parity-js/dapp-localtx#ac1d82c7f55bf0b6e2bf0e56044f95fa49c52ea9",
    "@parity/dapp-registry": "parity-js/dapp-registry#d3aeab6437ebcc5537e5f71a1cd49c8de8329f34",
    "@parity/dapp-signaturereg": "parity-js/dapp-signaturereg#f597e976bd89b07809173d7a35e3929ac81e7e75",
    "@parity/dapp-status": "js-dist-paritytech/dapp-status",
    "@parity/dapp-tokendeploy": "parity-js/dapp-tokendeploy#0f6f9f2adb82c02e35056dba792a75e95f440cdd",
    "@parity/dapp-tokenreg": "parity-js/dapp-tokenreg#9750a2c10a934f9ae0e6e7fd6fa5b9e25a7b0785",
    "babel-cli": "6.26.0",
    "babel-core": "6.26.0",
    "babel-eslint": "7.1.1",
    "babel-loader": "7.1.1",
    "babel-plugin-react-intl": "2.3.1",
    "babel-plugin-transform-class-properties": "6.23.0",
    "babel-plugin-transform-decorators-legacy": "1.3.4",
    "babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
    "babel-plugin-transform-object-rest-spread": "6.23.0",
    "babel-plugin-transform-react-remove-prop-types": "0.3.2",
    "babel-plugin-transform-runtime": "6.23.0",
    "babel-plugin-webpack-alias": "2.1.2",
    "babel-polyfill": "6.26.0",
    "babel-preset-env": "1.6.1",
    "babel-preset-react": "6.24.1",
    "babel-preset-stage-0": "6.24.1",
    "babel-register": "6.26.0",
    "chai": "3.5.0",
    "chai-as-promised": "6.0.0",
    "chai-enzyme": "1.0.0-beta.0",
    "chalk": "1.1.3",
    "copy-webpack-plugin": "4.0.1",
    "core-js": "2.4.1",
    "coveralls": "2.11.16",
    "cross-env": "5.1.1",
    "css-loader": "0.28.4",
    "ejs-loader": "0.3.0",
    "yargs": "6.6.0"
  },
  "dependencies": {
Amaury Martiny's avatar
Amaury Martiny committed
Amaury Martiny's avatar
Amaury Martiny committed
  }