This repository was archived by the owner on Aug 16, 2024. It is now read-only.
forked from janhartmann/react-auth0-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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": "react-auth0-lock-typescript",
"description": "React wrapper for Auth0 Lock using React Context API",
"author": "Jan Hartmann <[email protected]>",
"contributors": [
"Paul van Dyk <[email protected]>"
],
"license": "MIT",
"version": "1.0.3",
"keywords": [
"react",
"react-component",
"auth0",
"auth",
"context-api"
],
"main": "./lib/index.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Spookfish-ai/react-auth0-lock-ts.git"
},
"bugs": {
"url": "https://github.com/Spookfish-ai/react-auth0-lock-ts/issues"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rollup -c",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest"
},
"peerDependencies": {
"@types/auth0-lock": "11.4.13",
"auth0-lock": "11.6.1",
"react": "16.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/addon-actions": "^6.0.27",
"@storybook/addon-links": "^6.0.27",
"@storybook/addons": "^6.0.27",
"@storybook/react": "^6.0.27",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@types/auth0-lock": "^11.4.13",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.5",
"@types/testing-library__jest-dom": "^5.9.5",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"auth0-lock": "^11.27.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"prop-types": "^15.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.32.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.28.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5"
},
"dependencies": {}
}