-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.26 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
{
"name": "@okta/samples-js-react",
"version": "1.4.0",
"description": "React Sample Applications for Okta",
"scripts": {
"start": "cross-env react-scripts start",
"build": "react-scripts build",
"banners": "node tools/maintain-banners.js {okta-hosted-login,custom-login,tools,scripts}/{*js,src/**/*{js,jsx,css}}",
"test": "eslint -c .eslintrc.json --ext .js --ext .jsx okta-hosted-login/src/ custom-login/src/ scripts/ -- --fix && npm run test:e2e",
"admin-app": "PORT=8081 npm start --prefix packages/admin-app/",
"react-app": "PORT=8080 npm start --prefix packages/react-app/",
"msg-svc": "PORT=8000 npm start --prefix packages/msg-svc/",
"test:okta-hosted-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor okta-oidc-tck/e2e-tests/okta-hosted-login/conf.js",
"custom-login-server": "npm start --prefix custom-login/",
"test:custom-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor okta-oidc-tck/e2e-tests/custom-login/conf.js",
"resource-server": "node resource-server/server.js",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login",
"pretest": "webdriver-manager update --gecko false && node scripts/setup-env.js",
"postinstall": ""
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/okta/samples-js-react.git"
},
"bugs": "https://github.com/okta/samples-js-react/issues",
"homepage": "https://github.com/okta/samples-js-react",
"devDependencies": {
"eslint": "5.6.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"find-process": "^1.1.0",
"forever-monitor": "^1.7.1",
"globby": "^8.0.0",
"jasmine-reporters": "^2.2.0",
"lerna": "^3.13.1",
"platform": "^1.3.5",
"protractor": "^5.1.0",
"wait-on": "^2.0.2"
},
"bin": {},
"dependencies": {
"@okta/jwt-verifier": "0.0.11",
"@okta/oidc-middleware": "0.0.15",
"colors": "^1.1.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.14.0",
"express-session": "^1.15.6",
"mustache-express": "^1.2.5"
},
"private": true,
"workspaces": ["conf", "packages/*"]
}