-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "@standard/portal",
"version": "0.5.0",
"description": "Easily add a login portal to any React app with Auth0",
"homepage": "https://github.com/standard-ai/portal#readme",
"bugs": "https://github.com/standard-ai/portal/issues",
"repository": "github:standard-ai/portal",
"contributors": [
"Standard Cognition (https://standard.ai/) <[email protected]>",
"Maytee Chinavanichkit (https://github.com/mayt)",
"Francisco Presencia (https://francisco.io/)",
"Mohamed Almahbashi (https://github.com/mohawow)"
],
"license": "MIT",
"main": "index.min.js",
"files": [],
"scripts": {
"build": "webpack -c",
"stats": "webpack -c --profile --json > webpack-stats.json",
"test": "jest"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^1.13.0",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"auth0-js": "^9.14.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"jest": "^26.6.3",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-test": "^0.7.3",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.2.0",
"use-async-effect": "^2.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.1.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": []
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
}
}