diff options
Diffstat (limited to 'packages/react-docs-example/package.json')
-rw-r--r-- | packages/react-docs-example/package.json | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/react-docs-example/package.json b/packages/react-docs-example/package.json index 73ee5b2bc..5469677d4 100644 --- a/packages/react-docs-example/package.json +++ b/packages/react-docs-example/package.json @@ -4,17 +4,15 @@ "private": true, "description": "An example app using react-docs", - "main": "lib/index.js", - "types": "lib/index.d.ts", "scripts": { - "lint": "tslint --project . 'example/ts/**/*.ts' 'example/ts/**/*.tsx'", + "lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'", "build": "tsc", "build:example": "NODE_ENV=production webpack", "build:watch": "tsc -w", - "clean": "shx rm -rf lib", + "clean": "shx rm -rf lib; shx rm -f public/bundle*", "dev": "webpack-dev-server --open", "deploy_example": - "npm run build:example; aws s3 sync ./example/public/. s3://react-docs-example --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers" + "npm run build:example; aws s3 sync ./public/. s3://react-docs-example --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers" }, "author": "Fabio Berger", "license": "Apache-2.0", |