-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
d4c7a56
commit a0ff724
Showing
5 changed files
with
107 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,24 @@ | |
"name": "@reapit/config-manager", | ||
"version": "1.1.0", | ||
"description": "Node package for managing configuration and environment variables in AWS Secrets Manager", | ||
"main": "src/index.js", | ||
"bin": { | ||
"config-manager": "./src/cli.js" | ||
}, | ||
"scripts": { | ||
"release:prod": "node ../../scripts/release/release-npm.js @reapit/config-manager" | ||
"homepage": "https://github.com/reapit/foundations#readme", | ||
"bugs": { | ||
"url": "https://github.com/reapit/foundations/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/reapit/foundations.git" | ||
}, | ||
"author": "[email protected]", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/reapit/foundations/issues" | ||
"author": "[email protected]", | ||
"main": "src/index.js", | ||
"bin": { | ||
"config-manager": "./src/cli.js" | ||
}, | ||
"homepage": "https://github.com/reapit/foundations#readme", | ||
"dependencies": {} | ||
"scripts": { | ||
"release:prod": "node ../../scripts/release/release-npm.js @reapit/config-manager" | ||
}, | ||
"dependencies": { | ||
"aws-sdk": "^2.582.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,42 +2,60 @@ | |
"name": "@reapit/elements", | ||
"version": "0.5.35", | ||
"description": "A collection of React components and utilities for building apps for Reapit Marketplace", | ||
"homepage": "https://github.com/reapit/foundations#readme", | ||
"bugs": { | ||
"url": "https://github.com/reapit/foundations/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/reapit/foundations.git" | ||
}, | ||
"license": "MIT", | ||
"author": "Will McVay <[email protected]>", | ||
"files": [ | ||
"dist" | ||
], | ||
"main": "dist/index.js", | ||
"umd:main": "dist/elements.umd.production.js", | ||
"module": "dist/elements.esm.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"test:ci": "cross-env TZ=UTC jest --ci --colors --coverage --silent --forceExit", | ||
"test:dev": "cross-env TZ=UTC jest --watch --verbose", | ||
"build:prod": "rimraf dist && cross-env NODE_ENV=production tsdx build --format=cjs,esm,umd && rollup -c", | ||
"start:prod": "cross-env NODE_ENV=development tsdx watch", | ||
"release:prod": "node ../../scripts/release/release-npm.js @reapit/elements", | ||
"start:dev": "start-storybook -p 6006", | ||
"release:prod": "node ../../scripts/release/release-npm.js @reapit/elements" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/reapit/foundations.git" | ||
"start:prod": "cross-env NODE_ENV=development tsdx watch", | ||
"test:ci": "cross-env TZ=UTC jest --ci --colors --coverage --silent --forceExit", | ||
"test:dev": "cross-env TZ=UTC jest --watch --verbose" | ||
}, | ||
"author": "Will McVay <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/reapit/foundations/issues" | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 11" | ||
], | ||
"dependencies": { | ||
"@storybook/theming": "^5.2.8", | ||
"@types/papaparse": "^5.0.3", | ||
"bulma": "^0.7.5", | ||
"formik": "^2.0.4", | ||
"hardtack": "^4.1.0", | ||
"himalaya": "^1.1.0", | ||
"jsonwebtoken": "^8.5.1", | ||
"papaparse": "^5.1.1", | ||
"pell": "^1.0.6", | ||
"prop-types": "^15.7.2", | ||
"react-datasheet": "^1.4.0", | ||
"react-datepicker": "^2.9.6", | ||
"react-google-map": "^3.1.1", | ||
"react-google-maps-loader": "^4.2.5", | ||
"react-icons": "^3.7.0", | ||
"react-table": "7.0.0-alpha.35", | ||
"styled-components": "^4.4.1" | ||
}, | ||
"homepage": "https://github.com/reapit/foundations#readme", | ||
"devDependencies": {}, | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"react": "^16.11.0", | ||
"react-dom": "^16.11.0", | ||
"react-router": "^5.1.2", | ||
"react-router-dom": "^5.1.2" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 11" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters