1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "version": "0.51.1",
- "license": "Apache-2",
- "private": true,
- "engines": {
- "node": ">=14.0.0",
- "yarn": "^1.22.0"
- },
- "homepage": ".",
- "name": "pioneer",
- "scripts": {
- "analyze": "yarn clean && BUILD_ANALYZE=1 yarn run build:code && yarn source-map-explorer packages/apps/build/main.*.js",
- "build": "yarn run build:i18n && yarn run build:code",
- "build:code": "NODE_ENV=production node ./scripts/dev-build-ts.js",
- "build:i18n": "i18next-scanner --config i18next-scanner.config.js && node ./scripts/i18nSort.js",
- "build:www": "rm -rf packages/apps/build && mkdir -p packages/apps/build && yarn run build:i18n && cd packages/apps && NODE_ENV=production webpack --config webpack.config.js",
- "docs": "echo \"skipping docs\"",
- "clean": "polkadot-dev-clean-build",
- "clean:i18n": "rm -rf packages/apps/public/locales/en && mkdir -p packages/apps/public/locales/en",
- "lint": "tsc --noEmit --pretty && eslint --ext .js,.jsx,.ts,.tsx .",
- "lint:css": "stylelint './packages/**/src/**/*.tsx'",
- "lint-only-errors": "yarn lint --quiet",
- "lint-autofix": "yarn lint --fix",
- "postinstall": "polkadot-dev-yarn-only",
- "test": "echo \"skipping tests\"",
- "vanitygen": "node packages/app-accounts/scripts/vanitygen.js",
- "start": "yarn clean && cd packages/apps && webpack --config webpack.config.js",
- "build-storybook": "build-storybook -c .storybook",
- "storybook": "start-storybook -s ./packages/apps/public -p 3001"
- },
- "devDependencies": {
- "//": "Joystream-specific",
- "@babel/core": "^7.10.5",
- "@babel/register": "^7.10.5",
- "@babel/runtime": "^7.10.5",
- "@pinata/sdk": "^1.1.10",
- "@polkadot/dev": "^0.55.28",
- "@polkadot/ts": "^0.4.7",
- "@storybook/addon-actions": "^5.2.5",
- "@storybook/addon-console": "^1.2.1",
- "@storybook/addon-knobs": "^5.2.5",
- "@storybook/addon-storysource": "^5.2.5",
- "@storybook/react": "^5.2.5",
- "@types/bn.js": "^4.11.6",
- "@types/chart.js": "^2.9.23",
- "@types/file-saver": "^2.0.1",
- "@types/i18next": "^13.0.0",
- "@types/jest": "^26.0.10",
- "@types/react-beautiful-dnd": "^13.0.0",
- "@types/react-copy-to-clipboard": "^4.3.0",
- "@types/react-dom": "^16.9.8",
- "@types/react-router-dom": "^5.1.5",
- "@types/react-tooltip": "^4.2.4",
- "@types/store": "^2.0.2",
- "@types/styled-components": "^5.1.1",
- "@types/styled-theming": "^2.2.4",
- "concurrently": "^5.2.0",
- "devtron": "^1.4.0",
- "dnslink-cloudflare": "^2.0.4",
- "eslint-plugin-header": "^3.0.0",
- "eslint-plugin-sort-destructure-keys": "^1.3.5",
- "i18next-scanner": "^2.11.0",
- "jest": "^26.4.1",
- "react": "^16.13.1",
- "react-dom": "^16.13.1",
- "react-i18next": "^11.7.0",
- "source-map-explorer": "^2.4.2",
- "storybook-react-router": "^1.0.8",
- "stylelint": "^13.6.1",
- "stylelint-config-recommended": "^3.0.0",
- "stylelint-config-styled-components": "^0.1.1",
- "terser-webpack-plugin": "^3.0.7",
- "ts-jest": "^26.2.0",
- "tsconfig-paths-webpack-plugin": "^3.2.0",
- "typescript": "^4.4.3",
- "webpack": "^4.44.0",
- "webpack-cli": "^3.3.12",
- "webpack-merge": "^4.2.2",
- "webpack-plugin-serve": "^1.0.1"
- },
- "dependencies": {
- "@joystream/types": "link:../types",
- "@types/lodash": "^4.14.138",
- "@types/marked": "^0.7.0",
- "ajv": "^6.10.2",
- "cpx": "^1.5.0",
- "css-loader": "^3.2.0",
- "less": "^3.10.3",
- "less-loader": "^5.0.0",
- "lodash": "^4.17.15",
- "node-sass": "^4.13.0",
- "sass-loader": "^8.0.0",
- "style-loader": "^1.0.0"
- },
- "volta": {
- "extends": "../package.json"
- }
- }
|