This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
forked from inmagik/use-eazy-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "use-eazy-auth",
"version": "2.2.0",
"sideEffects": false,
"description": "React hooks for handle auth stuff",
"main": "./lib/index.cjs.js",
"module": "./lib/index.es.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/inmagik/use-eazy-auth",
"author": "Giovanni Fumagalli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inmagik/use-eazy-auth/issues"
},
"files": [
"lib",
"routes"
],
"keywords": [
"react",
"hooks",
"auth"
],
"scripts": {
"format": "prettier --no-semi --single-quote --trailing-comma es5 --write \"{src,__{tests,mocks}__}/**/*.js\"",
"test": "jest",
"prebuild": "rimraf lib",
"build": "rollup -c && tsc --project tsconfig.build.json",
"build:watch": "rollup -c -w",
"dev": "webpack-dev-server"
},
"eslintConfig": {
"extends": "react-app"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-router-dom": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/react": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"style-loader": "^0.23.1",
"typescript": "^4.1.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"rxjs": "^6.6.3"
}
}