snt-voting/package.json

83 lines
2.6 KiB
JSON
Raw Normal View History

2018-04-23 04:58:58 +00:00
{
"name": "status-contracts",
"version": "0.0.1",
"description": "",
2018-04-23 04:58:58 +00:00
"scripts": {
"solidity-coverage": "./node_modules/.bin/solidity-coverage",
2018-12-12 19:50:37 +00:00
"lint": "./node_modules/.bin/eslint app",
"test": "embark test",
"precommit": "lint-staged",
"format": "prettier --write \"app/**/*.js\""
2018-04-23 04:58:58 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/status-im/contracts.git"
},
2018-04-23 05:04:49 +00:00
"author": "Status Research & Development GMBH",
2018-04-23 04:58:58 +00:00
"license": "ISC",
"bugs": {
"url": "https://github.com/status-im/contracts/issues"
},
"homepage": "https://github.com/status-im/contracts#readme",
"lint-staged": {
"app/**/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
2018-09-27 23:37:13 +00:00
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
2018-12-12 19:50:37 +00:00
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
2018-12-12 19:50:37 +00:00
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^7.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4"
2018-09-27 23:37:13 +00:00
},
2018-05-18 19:17:46 +00:00
"dependencies": {
2018-12-04 13:58:14 +00:00
"@date-io/date-fns": "0.0.2",
2018-12-04 15:26:49 +00:00
"@material-ui/core": "^3.6.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.24",
2018-07-12 19:31:47 +00:00
"axios": "^0.18.0",
"bignumber.js": "^5.0.0",
"bn.js": "^4.11.8",
"bootstrap": "^3.3.7",
2018-12-04 13:58:14 +00:00
"date-fns": "^2.0.0-alpha.25",
"formik": "^0.11.11",
2018-05-22 15:11:53 +00:00
"jquery": "^3.3.1",
"lodash": "^4.17.19",
2018-12-04 13:58:14 +00:00
"material-ui-pickers": "^2.0.4",
"number-to-bn": "^1.7.0",
2018-09-27 23:37:13 +00:00
"react": "^16.4.2",
"react-addons-css-transition-group": "^15.6.2",
2018-05-18 19:17:46 +00:00
"react-blockies": "^1.3.0",
2018-09-27 23:37:13 +00:00
"react-dom": "^16.4.2",
"react-infinite-calendar": "^2.3.1",
"react-mobile-picker": "^0.1.12",
2018-10-16 20:20:54 +00:00
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^0.8.4",
"react-toggle": "^4.0.2",
2019-01-09 18:41:47 +00:00
"rlp": "^2.1.0"
2018-04-23 04:58:58 +00:00
}
}