mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
{
|
|
"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",
|
|
"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",
|
|
"classnames": "^2.2.6",
|
|
"react": "^16.7.0",
|
|
"react-dom": "^16.7.0",
|
|
"react-router-dom": "^4.3.1",
|
|
"web3": "^1.0.0-beta.37"
|
|
},
|
|
"devDependencies": {
|
|
"@types/classnames": "^2.2.7",
|
|
"@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",
|
|
"node-sass": "^4.11.0",
|
|
"prettier": "^1.16.1",
|
|
"prettier-stylelint": "^0.4.2",
|
|
"react-scripts": "2.1.3",
|
|
"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",
|
|
"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"
|
|
]
|
|
}
|