1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

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

6
package-lock.json generated
View File

@ -6349,6 +6349,12 @@
"prelude-ls": "~1.1.2" "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": { "unherit": {
"version": "1.1.1", "version": "1.1.1",
"resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz", "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz",

View File

@ -1,8 +1,9 @@
{ {
"name": "commons-marketplace", "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", "version": "0.1.0",
"private": true, "private": true,
"license": "Apache-2.0",
"scripts": { "scripts": {
"install": "./scripts/install.sh", "install": "./scripts/install.sh",
"start": "concurrently \"cd client && npm run start\" \"cd server && npm run start-watch\"", "start": "concurrently \"cd client && npm run start\" \"cd server && npm run start-watch\"",
@ -30,6 +31,11 @@
"stylelint": "^9.10.1", "stylelint": "^9.10.1",
"stylelint-config-bigchaindb": "^1.2.1", "stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0", "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 for component in $components
do do
echo "Installing dependencies: $component" echo "\n\nInstalling dependencies: $component\n"
cd $component cd $component
npm install npm install
cd .. cd ..

View File

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