forked from auth0-samples/auth0-react-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "auth0-react-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm-run-all --parallel spa api-server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"spa": "react-scripts start",
"server": "node server.js",
"server:dev": "nodemon server.js",
"api-server": "node api-server.js",
"api-server:dev": "nodemon api-server.js",
"dev": "npm-run-all --parallel spa api-server:dev",
"prod": "npm-run-all --parallel server api-server"
},
"dependencies": {
"@auth0/auth0-react": "^1.12.0",
"@babel/core": "^7.20.2",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"autoprefixer": "^10.4.9",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-jwt": "^6.1.2",
"helmet": "^4.4.1",
"highlight.js": "^10.0.3",
"jwks-rsa": "^1.12.2",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"react": "^17.0",
"react-dom": "^17.0",
"react-router-dom": "^5.3.4",
"react-scripts": "^5.0.1",
"reactstrap": "^8.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16",
"@testing-library/react": "^12.1",
"jest-environment-jsdom": "^27.0",
"jest-fetch-mock": "^3.0",
"nodemon": "^2.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}