commons/package.json

36 lines
1.5 KiB
JSON
Raw Normal View History

2019-03-24 02:10:00 +01:00
{
"name": "commons-marketplace",
2019-03-25 12:06:26 +01:00
"description": "Ocean Protocol marketplace front-end to explore, download, and publish open data sets.",
2019-03-24 02:10:00 +01:00
"version": "0.1.0",
"private": true,
"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 .",
"lint": "npm run lint:js && npm run lint:css"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
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",
"stylelint": "^9.10.1",
"stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0",
2019-03-25 12:06:26 +01:00
"stylelint-config-standard": "^18.2.0"
2019-03-24 02:18:53 +01:00
}
2019-03-24 02:10:00 +01:00
}