commons/package.json

80 lines
2.7 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-11-15 00:47:51 +01:00
"version": "2.0.0-beta.1",
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-04-12 16:26:13 +02:00
"start": "concurrently \"cd client && npm start\" \"cd server && npm start\"",
2019-03-24 02:18:53 +01:00
"build": "./scripts/build.sh",
2019-06-26 19:39:13 +02:00
"test": "npm run lint && scripts/test.sh && npm run test:e2e",
2019-07-17 15:47:54 +02:00
"test:e2e": "start-test start http-get://localhost:3000 cypress:run",
2019-04-15 23:30:35 +02:00
"test:watch": "npm run lint && concurrently \"cd client && npm run test:watch\" \"cd server && npm run test:watch\"",
2019-03-24 02:10:00 +01:00
"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",
"release": "release-it --non-interactive",
"changelog": "auto-changelog -p",
2019-06-26 16:15:35 +02:00
"cypress:run": "cypress run --browser chrome",
2019-05-17 11:10:06 +02:00
"cypress:open": "cypress open"
2019-03-24 02:10:00 +01:00
},
2019-07-10 17:21:55 +02:00
"dependencies": {},
2019-03-24 02:10:00 +01:00
"devDependencies": {
2019-10-28 16:22:01 +01:00
"@release-it/bumper": "^1.0.5",
2019-11-07 14:19:16 +01:00
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
2019-11-01 11:20:48 +01:00
"auto-changelog": "^1.16.2",
2019-10-28 16:22:01 +01:00
"concurrently": "^5.0.0",
2019-11-14 13:16:53 +01:00
"cypress": "^3.6.1",
2019-10-28 16:22:01 +01:00
"cypress-log-to-output": "^1.0.7",
2019-04-23 12:38:59 +02:00
"eslint": "^5.16.0",
2019-11-15 11:55:53 +01:00
"eslint-config-oceanprotocol": "^1.4.0",
2019-10-28 16:22:01 +01:00
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-prettier": "^3.1.1",
2019-11-15 11:55:53 +01:00
"prettier": "^1.19.1",
2019-03-24 02:10:00 +01:00
"prettier-stylelint": "^0.4.2",
2019-10-28 16:22:01 +01:00
"release-it": "^12.4.3",
"start-server-and-test": "^1.10.6",
"stylelint": "^11.1.1",
2019-04-30 19:19:28 +02:00
"stylelint-config-bigchaindb": "^1.2.2",
2019-10-28 16:22:01 +01:00
"stylelint-config-css-modules": "^1.5.0",
"stylelint-config-standard": "^19.0.0",
2019-11-07 11:19:12 +01:00
"typescript": "^3.7.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"
},
"release-it": {
2019-07-04 11:00:40 +02:00
"hooks": {
"after:bump": "npm run changelog"
},
2019-05-28 11:41:36 +02:00
"plugins": {
"@release-it/bumper": {
"out": [
"package.json",
"package-lock.json",
2019-05-28 11:41:36 +02:00
"client/package.json",
"client/package-lock.json",
"server/package.json",
"server/package-lock.json"
2019-05-28 11:41:36 +02:00
]
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
2019-03-24 02:18:53 +01:00
}
2019-03-24 02:10:00 +01:00
}