commons/package.json

71 lines
2.2 KiB
JSON
Raw Permalink 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.",
2020-05-19 19:00:51 +02:00
"version": "2.4.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\"",
2020-05-19 09:21:55 +02:00
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,scss}'",
"lint": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .",
2019-03-24 02:10:00 +01:00
"lint:fix": "eslint --fix --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .",
"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": {
"@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",
2020-03-16 11:48:08 +01:00
"cypress-log-to-output": "^1.0.8",
2020-01-06 14:53:03 +01:00
"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"
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
}