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

52 lines
1.5 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}'",
"lint:js": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"lint": "npm run lint:js && npm run lint:css"
},
"dependencies": {
"@oceanprotocol/squid": "^0.2.7",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"web3": "^1.0.0-beta.37"
},
"devDependencies": {
"@types/jest": "23.3.12",
"@types/node": "10.12.18",
"@types/react": "16.7.20",
"@types/react-dom": "16.0.11",
"@types/react-router-dom": "^4.3.1",
2019-01-23 13:03:41 +01:00
"node-sass": "^4.11.0",
2019-01-23 11:15:27 +01:00
"prettier": "^1.16.1",
"prettier-stylelint": "^0.4.2",
"react-scripts": "2.1.3",
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",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
2019-01-23 11:47:47 +01:00
"tslint-react": "^3.6.0",
"typescript": "3.2.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}