{ "name": "commons", "description": "Ocean Protocol marketplace to explore, download, and publish open data sets.", "version": "2.4.1", "license": "Apache-2.0", "scripts": { "install": "./scripts/install.sh", "start": "concurrently \"cd client && npm start\" \"cd server && npm start\"", "build": "./scripts/build.sh", "test": "npm run lint && scripts/test.sh && npm run test:e2e", "test:e2e": "start-test start http-get://localhost:3000 cypress:run", "test:watch": "npm run lint && concurrently \"cd client && npm run test:watch\" \"cd server && npm run test:watch\"", "format": "prettier --write '**/*.{js,jsx,ts,tsx,css,scss}'", "lint": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .", "lint:fix": "eslint --fix --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .", "release": "release-it --non-interactive", "changelog": "auto-changelog -p", "cypress:run": "cypress run --browser chrome", "cypress:open": "cypress open" }, "dependencies": {}, "devDependencies": { "@release-it/bumper": "^1.2.0", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", "auto-changelog": "^2.1.0", "concurrently": "^5.2.0", "cypress": "^4.8.0", "cypress-log-to-output": "^1.0.8", "eslint": "^6.8.0", "eslint-config-oceanprotocol": "^1.5.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-cypress": "^2.11.1", "eslint-plugin-prettier": "^3.1.4", "prettier": "^2.0.5", "release-it": "^13.6.3", "start-server-and-test": "^1.11.0", "typescript": "^3.9.5" }, "repository": { "type": "git", "url": "https://github.com/oceanprotocol/commons" }, "release-it": { "hooks": { "after:bump": "npm run changelog" }, "plugins": { "@release-it/bumper": { "out": [ "package.json", "package-lock.json", "client/package.json", "client/package-lock.json", "server/package.json", "server/package-lock.json" ] } }, "git": { "tagName": "v${version}" }, "github": { "release": true }, "npm": { "publish": false } } }