index.community/frontend/package.json

69 lines
1.8 KiB
JSON
Raw Normal View History

2018-08-27 11:41:01 +00:00
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts-ts start",
"build": "react-scripts-ts build",
"lint": "tslint -p tsconfig.json -c tslint.json \"src/**/*.{ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "yarn lint && react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn pretty",
"yarn lint:fix",
"git add"
]
},
"prettier": {
"printWidth": 120
},
2018-08-27 11:41:01 +00:00
"dependencies": {
2018-08-27 15:27:09 +00:00
"@blueprintjs/core": "^3.4.0",
"@blueprintjs/icons": "^3.1.0",
"@blueprintjs/select": "^3.1.0",
2018-08-27 21:31:27 +00:00
"classnames": "^2.2.6",
"cross-fetch": "^3.0.2",
2018-09-03 19:30:11 +00:00
"lodash": "^4.17.10",
2018-09-01 17:34:00 +00:00
"moment": "^2.22.2",
2018-08-27 15:27:09 +00:00
"normalize.css": "^8.0.0",
2018-08-27 11:41:01 +00:00
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"react-scripts-ts": "3.1.0",
"react-sigma": "^1.2.30",
2018-08-27 21:31:27 +00:00
"react-virtualized": "^9.20.1",
2018-08-27 15:27:09 +00:00
"redux": "^4.0.0",
2018-09-01 17:24:05 +00:00
"redux-thunk": "^2.3.0",
"sanitize-html": "^1.18.4",
"styled-components": "^4.2.0"
2018-08-27 11:41:01 +00:00
},
2018-08-27 12:07:32 +00:00
"devDependencies": {
"@blueprintjs/tslint-config": "^1.8.0",
2018-08-27 21:31:27 +00:00
"@types/classnames": "^2.2.6",
"@types/jest": "^24.0.11",
2018-09-03 19:30:11 +00:00
"@types/lodash": "^4.14.116",
"@types/node": "^11.13.4",
2018-08-27 12:07:32 +00:00
"@types/react": "^16.4.12",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^7.0.6",
"@types/react-router-dom": "^4.3.2",
2018-08-27 21:31:27 +00:00
"@types/react-virtualized": "^9.18.7",
2018-09-01 17:24:05 +00:00
"@types/sanitize-html": "^1.18.0",
"@types/styled-components": "4.1.8",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"tslint-eslint-rules": "^5.4.0",
2018-08-27 12:07:32 +00:00
"typescript": "^3.0.1"
2018-08-27 11:41:01 +00:00
}
2018-08-27 12:07:32 +00:00
}