Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e6e8cdc

Browse files
authoredSep 23, 2020
Merge pull request #22 from topcoder-platform/feature/Auth0-RS256-IdToken
Changing auth lib for RS256 token compatibility
2 parents f5e0ebf + b5b739d commit e6e8cdc

File tree

5 files changed

+10454
-8022
lines changed

5 files changed

+10454
-8022
lines changed
 

‎package-lock.json

Lines changed: 632 additions & 505 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"license": "none",
1414
"devDependencies": {
1515
"chai": "^4.1.1",
16-
"eslint": "^2.8.0",
16+
"eslint": "^6.6.0",
1717
"eslint-config-airbnb-base": "^1.0.1",
1818
"eslint-plugin-import": "^1.5.0",
1919
"eslint-plugin-mocha": "^5.0.0",

‎ui/package-lock.json

Lines changed: 9805 additions & 7513 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎ui/package.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,27 @@
99
"react-day-picker": "^7.1.6",
1010
"react-dom": "^16.3.2",
1111
"react-router-dom": "^4.3.1",
12-
"react-scripts": "1.1.4",
13-
"superagent": "^3.8.3"
12+
"react-scripts": "3.4.3",
13+
"superagent": "^3.8.3",
14+
"tc-auth-lib": "git+https://github.com/topcoder-platform/tc-auth-lib.git#dev"
1415
},
1516
"scripts": {
1617
"start": "react-scripts start",
1718
"build": "react-scripts build",
1819
"test": "react-scripts test --env=jsdom",
1920
"eject": "react-scripts eject",
2021
"postinstall": "npm run build"
22+
},
23+
"browserslist": {
24+
"production": [
25+
">0.2%",
26+
"not dead",
27+
"not op_mini all"
28+
],
29+
"development": [
30+
"last 1 chrome version",
31+
"last 1 firefox version",
32+
"last 1 safari version"
33+
]
2134
}
2235
}

‎ui/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
22
import { BrowserRouter as Router } from 'react-router-dom';
3-
import { getFreshToken, configureConnector, decodeToken } from './services/tc-auth';
3+
import { getFreshToken, configureConnector, decodeToken } from 'tc-auth-lib';
44
import loadingImg from './loading.gif';
55
import './App.css';
66
import DayPickerInput from 'react-day-picker/DayPickerInput';

0 commit comments

Comments
 (0)
This repository has been archived.