-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
executable file
·78 lines (78 loc) · 2.63 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
{
"name": "@asgardeo/auth-react",
"version": "4.0.4",
"description": "Asgardeo Auth React SDK for React Applications.",
"keywords": [
"WSO2",
"WSO2-IS",
"WSO2 Identity Server",
"WSO2 Identity Apps",
"authentication",
"OIDC",
"SDK",
"Javascript",
"Asgardeo",
"React"
],
"main": "dist/main.js",
"types": "dist/src/index.d.ts",
"module": "dist/main.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"fix-lint": "eslint --ext .js,.ts . --fix",
"build": "rimraf dist && yarn run type-check && webpack --env NODE_ENV=production",
"build:dev": "rimraf dist && yarn run type-check && webpack --env NODE_ENV=development",
"build:watch": "yarn run build:dev -- --watch",
"type-check": "tsc --emitDeclarationOnly",
"type-check:watch": "yarn run type-check -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asgardeo/asgardeo-auth-react-sdk.git"
},
"bugs": {
"url": "https://github.com/asgardeo/asgardeo-auth-react-sdk/issues"
},
"homepage": "https://github.com/asgardeo/asgardeo-auth-react-sdk#readme",
"author": "WSO2",
"license": "Apache-2.0",
"dependencies": {
"@asgardeo/auth-spa": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime-corejs3": "^7.20.6",
"@types/node": "^18.11.17",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-loader": "^9.1.0",
"core-js": "^3.26.1",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"worker-loader": "^3.0.8"
},
"peerDependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"react": ">=16.8",
"react-dom": ">=16.8",
"react-router-dom": "^6.3.0"
}
}