skolplattformen-backup/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@skolplattformen/api-hooks",
2021-02-06 20:48:28 +00:00
"description": "React hooks for accessing api with cached results",
"version": "0.0.0",
2021-02-06 20:48:28 +00:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "git@github.com:kolplattformen/api-hooks.git",
"author": "Johan Öbrink <johan.obrink@gmail.com>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"lint": "eslint 'src/**/*.ts' --quiet --fix",
"test": "jest",
"build": "tsc",
"prepare": "yarn build",
"publish-package": "npm publish --access public"
},
"dependencies": {
"@skolplattformen/embedded-api": "^0.20.0",
"react": "^16.11.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/react": "^16.14.3",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"events": "^3.2.0",
"jest": "^26.6.3",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"regenerator-runtime": "^0.13.7",
"typescript": "^3.9.7"
2021-02-06 20:48:28 +00:00
},
"publishConfig": {
"access": "public"
}
}