* development: (87 commits) Update packages/sol-tracing-utils/src/trace_collection_subprovider.ts Make mapping namings direct Remove unused tslint disable Revert "Remove logAsyncErrors hack" Remove logAsyncErrors hack Refactor logAsyncErrors to follow our conventions Export Sources and SourceCodes out of tracing utils Replace console.log with logUtils.log (#1515) strict decoding of return values using generics makerAssetFillAmount -> takerAssetFillAmount Ran prettier Linter Fix build after rebase Style cleanup for Compressed Calldata in Contract Wrappers PR Use simpler `_.find` to locate fillOrderBai Updated dutch auction wrapper Added back abi-gen-wrappers Renamed signatureParser.ts to signature_parser.ts Renamed decode rule `structsAsObjects` to `shouldConvertStructsToObjects` circle build failed. New commit to resubmit job. ...
87 lines
4.1 KiB
JSON
87 lines
4.1 KiB
JSON
{
|
|
"name": "@0x/dev-tools-pages",
|
|
"version": "0.0.12",
|
|
"engines": {
|
|
"node": ">=6.12"
|
|
},
|
|
"private": true,
|
|
"description": "0x Dev tools pages",
|
|
"scripts": {
|
|
"build": "node --max_old_space_size=8192 ../../node_modules/.bin/webpack --mode production && react-snap",
|
|
"build:ci": "yarn build",
|
|
"build:dev": "../../node_modules/.bin/webpack --mode development",
|
|
"clean": "shx rm -f public/bundle*",
|
|
"lint": "tslint --format stylish --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
|
|
"dev": "webpack-dev-server --mode development --content-base public",
|
|
"deploy:all": "npm run build; npm run deploy:compiler; npm run deploy:compiler:index; npm run deploy:coverage; npm run deploy:coverage:index; npm run deploy:profiler; npm run deploy:profiler:index; npm run deploy:trace; npm run deploy:trace:index;",
|
|
"deploy:compiler": "DIR_NAME=./public/. BUCKET=s3://sol-compiler.com yarn s3:sync --exclude 'bundle-cov*' --exclude 'bundle-trace*' --exclude 'bundle-profiler*'",
|
|
"deploy:coverage": "DIR_NAME=./public/. BUCKET=s3://sol-coverage.com yarn s3:sync --exclude 'bundle-compiler*' --exclude 'bundle-trace*' --exclude 'bundle-profiler*'",
|
|
"deploy:profiler": "DIR_NAME=./public/. BUCKET=s3://sol-profiler.com yarn s3:sync --exclude 'bundle-cov*' --exclude 'bundle-trace*' --exclude 'bundle-compiler*'",
|
|
"deploy:trace": "DIR_NAME=./public/. BUCKET=s3://sol-trace.com yarn s3:sync --exclude 'bundle-cov*' --exclude 'bundle-compiler*' --exclude 'bundle-profiler*'",
|
|
"deploy:compiler:index": "DIR_NAME=./public/compiler/. BUCKET=s3://sol-compiler.com yarn s3:sync",
|
|
"deploy:coverage:index": "DIR_NAME=./public/coverage/. BUCKET=s3://sol-coverage.com yarn s3:sync",
|
|
"deploy:profiler:index": "DIR_NAME=./public/profiler/. BUCKET=s3://sol-profiler.com yarn s3:sync",
|
|
"deploy:trace:index": "DIR_NAME=./public/trace/. BUCKET=s3://sol-trace.com yarn s3:sync",
|
|
"s3:sync": "aws s3 sync $DIR_NAME $BUCKET --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --exclude *.map.js --exclude 'profiler/*' --exclude 'trace/*' --exclude 'coverage/*' --exclude 'compiler/*'"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@0x/react-shared": "^1.1.1",
|
|
"basscss": "^8.0.3",
|
|
"bowser": "^1.9.3",
|
|
"highlight.js": "^9.13.1",
|
|
"less": "^2.7.2",
|
|
"polished": "^1.9.2",
|
|
"react": "^16.5.2",
|
|
"react-dom": "^16.5.2",
|
|
"react-loadable": "^5.5.0",
|
|
"react-lottie": "^1.2.3",
|
|
"react-tabs": "^2.3.0",
|
|
"styled-components": "^4.1.1",
|
|
"styled-normalize": "^8.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/highlight.js": "^9.12.3",
|
|
"@types/lodash": "4.14.104",
|
|
"@types/node": "*",
|
|
"@types/react": "^16.4.2",
|
|
"@types/react-dom": "^16.0.7",
|
|
"@types/react-loadable": "^5.4.1",
|
|
"@types/react-lottie": "^1.2.0",
|
|
"@types/react-router-dom": "^4.0.4",
|
|
"@types/react-tabs": "^2.3.0",
|
|
"@types/react-tap-event-plugin": "0.0.30",
|
|
"@types/styled-components": "4.1.1",
|
|
"awesome-typescript-loader": "^5.2.1",
|
|
"clean-webpack-plugin": "^0.1.19",
|
|
"copy-webpack-plugin": "^4.5.4",
|
|
"copyfiles": "^2.0.0",
|
|
"css-loader": "0.23.x",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"less-loader": "^4.1.0",
|
|
"make-promises-safe": "^1.1.0",
|
|
"raw-loader": "^0.5.1",
|
|
"react-snap": "^1.19.0",
|
|
"react-svg-loader": "^2.1.0",
|
|
"shx": "^0.2.2",
|
|
"source-map-loader": "^0.2.4",
|
|
"style-loader": "0.23.x",
|
|
"terser-webpack-plugin": "^1.1.0",
|
|
"tslint": "5.11.0",
|
|
"tslint-config-0xproject": "^0.0.2",
|
|
"typescript": "3.0.1",
|
|
"uglifyjs-webpack-plugin": "^2.0.1",
|
|
"webpack": "^4.20.2",
|
|
"webpack-bundle-analyzer": "^3.0.3",
|
|
"webpack-cli": "3.1.2",
|
|
"webpack-dev-server": "^3.1.9"
|
|
},
|
|
"reactSnap": {
|
|
"source": "public",
|
|
"puppeteerArgs": [
|
|
"--no-sandbox",
|
|
"--disable-setuid-sandbox"
|
|
]
|
|
}
|
|
}
|