-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "react-oidc-client-ts",
"description": "OpenID Connect (OIDC) javascript client with React",
"version": "3.0.0",
"dependencies": {
"axios": "~0.21.1",
"bootstrap": "~4.4.1",
"core-js": "~3.6.4",
"oidc-client": "~1.10.1",
"ramda": "~0.27.0",
"react": "~16.13.0",
"react-app-polyfill": "~1.0.6",
"react-dom": "~16.13.0",
"react-json-tree": "~0.11.2",
"react-router-dom": "~5.1.2",
"toastr": "~2.1.4"
},
"scripts": {
"start": "set PORT=4200 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/axios": "~0.14.0",
"@types/enzyme": "~3.10.5",
"@types/enzyme-adapter-react-16": "~1.0.6",
"@types/jest": "~25.1.4",
"@types/node": "~13.9.0",
"@types/ramda": "~0.26.43",
"@types/react": "~16.9.23",
"@types/react-dom": "~16.9.5",
"@types/react-json-tree": "~0.6.11",
"@types/react-router-dom": "~5.1.3",
"@types/react-test-renderer": "~16.9.2",
"@types/toastr": "~2.1.37",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.2",
"react-scripts": "~3.4.0",
"react-test-renderer": "~16.13.0",
"typescript": "~3.8.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}