-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.17 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
{
"name": "use-eazy-auth",
"version": "2.6.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 || ^18.0.0",
"react-router-dom": "^5.0.0"
},
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@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",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"eslint-config-react-app": "^7.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.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.77.0",
"style-loader": "^3.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"rxjs": "^6.6.3"
}
}