package.json updates

This commit is contained in:
Matthias Kretschmann 2019-03-25 13:13:55 +01:00
parent b649289ab0
commit 5282044ea8
Signed by: m
GPG Key ID: 606EEEF3C479A91F
5 changed files with 27 additions and 7 deletions

View File

@ -1,7 +1,8 @@
{
"name": "commons-marketplace-client",
"description": "Ocean Protocol marketplace frontend to explore, download, and publish open data sets.",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=4096 build",
@ -42,6 +43,10 @@
"react-scripts": "^2.1.8",
"typescript": "^3.3.4000"
},
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/commons-marketplace"
},
"browserslist": [
">0.2%",
"not dead",

6
package-lock.json generated
View File

@ -6349,6 +6349,12 @@
"prelude-ls": "~1.1.2"
}
},
"typescript": {
"version": "3.3.4000",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.3.4000.tgz",
"integrity": "sha512-jjOcCZvpkl2+z7JFn0yBOoLQyLoIkNZAs/fYJkUG6VKy6zLPHJGfQJYFHzibB6GJaF/8QrcECtlQ5cpvRHSMEA==",
"dev": true
},
"unherit": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz",

View File

@ -1,8 +1,9 @@
{
"name": "commons-marketplace",
"description": "Ocean Protocol marketplace front-end to explore, download, and publish open data sets.",
"description": "Ocean Protocol marketplace to explore, download, and publish open data sets.",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"install": "./scripts/install.sh",
"start": "concurrently \"cd client && npm run start\" \"cd server && npm run start-watch\"",
@ -30,6 +31,11 @@
"stylelint": "^9.10.1",
"stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0"
"stylelint-config-standard": "^18.2.0",
"typescript": "^3.3.4000"
},
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/commons-marketplace"
}
}

View File

@ -5,7 +5,7 @@ components="server client"
for component in $components
do
echo "Installing dependencies: $component"
echo "\n\nInstalling dependencies: $component\n"
cd $component
npm install
cd ..

View File

@ -1,7 +1,8 @@
{
"name": "commons-marketplace-server",
"description": "Ocean Protocol marketplace backend.",
"version": "1.0.0",
"description": "",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
@ -11,8 +12,6 @@
"test": "jest --coverage",
"watch-test": "npm run test --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"color-js": "^1.0.5",
@ -46,6 +45,10 @@
"ts-node": "^8.0.2",
"typescript": "^3.3.4000"
},
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/commons-marketplace"
},
"jest": {
"preset": "ts-jest"
}