1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/package.json

61 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "commons-marketplace",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "npm run lint && react-scripts test",
2019-01-23 11:15:27 +01:00
"eject": "react-scripts eject",
"format:js": "prettier --parser typescript --write '**/*.{js,jsx,ts,tsx}'",
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
"format": "npm run format:js && npm run format:css",
"lint:css": "stylelint './src/**/*.{css,scss}'",
2019-02-05 15:53:35 +01:00
"lint:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx .",
2019-01-23 11:15:27 +01:00
"lint": "npm run lint:js && npm run lint:css"
},
"dependencies": {
2019-02-07 11:28:04 +01:00
"@oceanprotocol/squid": "^0.2.8",
"@types/react-helmet": "^5.0.8",
2019-01-24 15:42:10 +01:00
"classnames": "^2.2.6",
2019-02-07 11:58:08 +01:00
"eslint": "^5.6.0",
2019-01-23 17:39:34 +01:00
"query-string": "^6.2.0",
2019-02-07 11:28:04 +01:00
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
2019-02-08 11:18:42 +01:00
"slugify": "^1.3.4",
2019-02-07 11:28:04 +01:00
"web3": "^1.0.0-beta.43"
},
"devDependencies": {
2019-01-24 15:51:13 +01:00
"@types/classnames": "^2.2.7",
2019-02-07 11:28:04 +01:00
"@types/jest": "^24.0.0",
"@types/node": "^10.12.21",
2019-01-23 17:39:34 +01:00
"@types/query-string": "^6.2.0",
2019-02-07 11:28:04 +01:00
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-router-dom": "^4.3.1",
2019-01-30 17:33:56 +01:00
"@types/web3": "^1.0.18",
2019-02-05 16:41:00 +01:00
"@typescript-eslint/eslint-plugin": "^1.2.0",
2019-02-05 15:53:35 +01:00
"@typescript-eslint/parser": "^1.2.0",
"eslint-config-oceanprotocol": "^1.3.0",
2019-02-07 11:28:04 +01:00
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
2019-01-23 13:03:41 +01:00
"node-sass": "^4.11.0",
2019-02-07 11:28:04 +01:00
"prettier": "^1.16.4",
2019-01-23 11:15:27 +01:00
"prettier-stylelint": "^0.4.2",
2019-02-07 11:28:04 +01:00
"react-scripts": "^2.1.3",
2019-02-05 16:00:22 +01:00
"stylelint": "^9.10.1",
2019-01-23 11:15:27 +01:00
"stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"typescript": "3.2.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}