commons/package.json

48 lines
2.2 KiB
JSON
Raw Normal View History

2019-03-24 02:10:00 +01:00
{
2019-04-03 14:40:31 +02:00
"name": "commons",
2019-03-25 13:13:55 +01:00
"description": "Ocean Protocol marketplace to explore, download, and publish open data sets.",
2019-04-11 20:08:29 +02:00
"version": "0.1.8",
2019-03-25 13:13:55 +01:00
"license": "Apache-2.0",
2019-03-24 02:10:00 +01:00
"scripts": {
"install": "./scripts/install.sh",
2019-03-25 10:57:42 +01:00
"start": "concurrently \"cd client && npm run start\" \"cd server && npm run start-watch\"",
2019-03-24 02:18:53 +01:00
"build": "./scripts/build.sh",
2019-03-24 02:10:00 +01:00
"test": "npm run lint && scripts/test.sh",
"format:js": "prettier --parser typescript --write '**/*.{js,jsx,ts,tsx}'",
2019-03-25 11:52:24 +01:00
"format:css": "prettier-stylelint --ignore-path .gitignore --write --quiet '**/*.{css,scss}'",
2019-03-24 02:10:00 +01:00
"format": "npm run format:js && npm run format:css",
2019-03-25 11:52:24 +01:00
"lint:css": "stylelint --ignore-path .gitignore './**/*.{css,scss}'",
2019-03-24 02:10:00 +01:00
"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 .",
2019-04-09 14:09:27 +02:00
"lint": "npm run lint:js && npm run lint:css",
2019-04-09 16:18:13 +02:00
"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",
2019-04-09 14:32:33 +02:00
"changelog": "auto-changelog",
"beforeStage": "npm run changelog"
2019-03-24 02:10:00 +01:00
},
"dependencies": {},
"devDependencies": {
2019-04-09 18:24:04 +02:00
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
2019-04-09 14:09:27 +02:00
"auto-changelog": "^1.12.0",
2019-03-25 10:57:42 +01:00
"concurrently": "^4.1.0",
2019-03-24 02:10:00 +01:00
"eslint": "5.12.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",
2019-04-09 18:24:04 +02:00
"release-it": "^10.4.1",
2019-03-24 02:10:00 +01:00
"stylelint": "^9.10.1",
"stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0",
2019-03-25 13:13:55 +01:00
"stylelint-config-standard": "^18.2.0",
2019-04-09 18:24:04 +02:00
"typescript": "^3.4.2"
2019-03-25 13:13:55 +01:00
},
"repository": {
"type": "git",
2019-04-03 14:40:31 +02:00
"url": "https://github.com/oceanprotocol/commons"
2019-03-24 02:18:53 +01:00
}
2019-03-24 02:10:00 +01:00
}