mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
50 lines
2.4 KiB
JSON
50 lines
2.4 KiB
JSON
{
|
|
"name": "commons",
|
|
"description": "Ocean Protocol marketplace to explore, download, and publish open data sets.",
|
|
"version": "0.2.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",
|
|
"test:watch": "npm run lint && concurrently \"cd client && npm run test:watch\" \"cd server && npm run test:watch\"",
|
|
"format:js": "prettier --parser typescript --write '**/*.{js,jsx,ts,tsx}'",
|
|
"format:css": "prettier-stylelint --ignore-path .gitignore --write --quiet '**/*.{css,scss}'",
|
|
"format": "npm run format:js && npm run format:css",
|
|
"lint:css": "stylelint --ignore-path .gitignore './**/*.{css,scss}'",
|
|
"lint:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .",
|
|
"lint:fix": "eslint --fix --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .",
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
"release": "./node_modules/release-it/bin/release-it.js --git.tagName='v${version}' --github.release --non-interactive --no-npm.publish",
|
|
"release-minor": "./node_modules/release-it/bin/release-it.js minor --git.tagName='v${version}' --github.release --non-interactive --no-npm.publish",
|
|
"release-major": "./node_modules/release-it/bin/release-it.js major --git.tagName='v${version}' --github.release --non-interactive --no-npm.publish",
|
|
"changelog": "auto-changelog",
|
|
"changelog:commit": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog' && git push",
|
|
"beforeStage": "npm run changelog"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^1.7.0",
|
|
"@typescript-eslint/parser": "^1.7.0",
|
|
"auto-changelog": "^1.13.0",
|
|
"concurrently": "^4.1.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-oceanprotocol": "^1.3.0",
|
|
"eslint-config-prettier": "^4.1.0",
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
"prettier": "^1.16.4",
|
|
"prettier-stylelint": "^0.4.2",
|
|
"release-it": "^10.4.3",
|
|
"stylelint": "^10.0.1",
|
|
"stylelint-config-bigchaindb": "^1.2.1",
|
|
"stylelint-config-css-modules": "^1.3.0",
|
|
"stylelint-config-standard": "^18.2.0",
|
|
"typescript": "^3.4.4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oceanprotocol/commons"
|
|
}
|
|
}
|