aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/package.json
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-09-28 19:09:16 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-09-28 19:09:16 +0800
commit2471e1034664c348cb9fa4646b306f48c44572ec (patch)
treedeae8e9a3f911784eb611b91525b2030d114c08b /packages/instant/package.json
parenta737cfa004ee1dc18be935f61fb9c289ed5623fd (diff)
downloaddexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.gz
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.bz2
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.lz
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.xz
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.zst
dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.zip
Have React setup with basic build working
Diffstat (limited to 'packages/instant/package.json')
-rw-r--r--packages/instant/package.json70
1 files changed, 70 insertions, 0 deletions
diff --git a/packages/instant/package.json b/packages/instant/package.json
new file mode 100644
index 000000000..e1131b7e6
--- /dev/null
+++ b/packages/instant/package.json
@@ -0,0 +1,70 @@
+{
+ "name": "@0xproject/instant",
+ "version": "0.0.1",
+ "engines": {
+ "node": ">=6.12"
+ },
+ "description": "0x Instant React Component",
+ "main": "lib/src/index.js",
+ "types": "lib/src/index.d.ts",
+ "scripts": {
+ "watch_without_deps": "tsc -w",
+ "lint": "tslint --project .",
+ "test": "yarn run_mocha",
+ "rebuild_and_test": "run-s clean build test",
+ "test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
+ "coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
+ "test:circleci": "yarn test:coverage",
+ "run_mocha": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --exit",
+ "clean": "shx rm -rf lib test_temp scripts",
+ "build": "webpack --mode production && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
+ "manual:postpublish": "yarn build; node ./scripts/postpublish.js"
+ },
+ "config": {
+ "postpublish": {
+ "assets": []
+ }
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/0xProject/0x-monorepo.git"
+ },
+ "author": "Francesco Agosti",
+ "license": "Apache-2.0",
+ "bugs": {
+ "url": "https://github.com/0xProject/0x-monorepo/issues"
+ },
+ "homepage": "https://github.com/0xProject/0x-monorepo/packages/instant/README.md",
+ "dependencies": {
+ "@0xproject/connect": "^2.0.4",
+ "@0xproject/types": "^1.1.1",
+ "@0xproject/typescript-typings": "^2.0.2",
+ "@0xproject/utils": "^1.0.11",
+ "@0xproject/web3-wrapper": "^3.0.1",
+ "ethereum-types": "^1.0.8",
+ "lodash": "^4.17.10",
+ "react": "^16.5.2",
+ "react-dom": "^16.5.2"
+ },
+ "devDependencies": {
+ "@0xproject/tslint-config": "^1.0.7",
+ "@types/lodash": "^4.14.116",
+ "@types/node": "*",
+ "@types/react": "16.4.7",
+ "@types/react-dom": "^16.0.8",
+ "awesome-typescript-loader": "^5.2.1",
+ "copyfiles": "^1.2.0",
+ "make-promises-safe": "^1.1.0",
+ "npm-run-all": "^4.1.2",
+ "nyc": "^11.0.1",
+ "shx": "^0.2.2",
+ "tslint": "5.11.0",
+ "typedoc": "0.12.0",
+ "typescript": "3.0.1",
+ "webpack": "^4.20.2",
+ "webpack-cli": "^3.1.1"
+ },
+ "publishConfig": {
+ "access": "private"
+ }
+}