-
Notifications
You must be signed in to change notification settings - Fork 260
/
package.json
68 lines (68 loc) · 3.13 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
{
"name": "@okta/samples-js-react",
"version": "3.0.0",
"description": "React Sample Applications for Okta",
"scripts": {
"banners": "node tools/maintain-banners.js {okta-hosted-login,custom-login,tools,scripts}/{*js,src/**/*{js,jsx,css}}",
"lint:okta-hosted-login": "eslint ./okta-hosted-login/ --ext .jsx,.tsx",
"lint:custom-login": "eslint ./custom-login/ --ext .jsx,.tsx",
"lint": "npm run lint:okta-hosted-login && npm run lint:custom-login",
"test": "npm run lint && npm run test:e2e",
"okta-hosted-login-server": "npm start --prefix okta-hosted-login/",
"test:okta-hosted-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor protractor.conf.js --sample=okta-hosted-login",
"custom-login-server": "npm start --prefix custom-login/",
"test:custom-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor protractor.conf.js --sample=custom-login",
"resource-server": "node scripts/node-resource-server.js",
"test:e2e": "npm run test:okta-hosted-login && npm run stop && npm run test:custom-login",
"preresource-server": "npm run setup-env",
"pretest": "node ./scripts/update-se-drivers.js && npm run setup-env",
"pretest-legacy": "npm run webdriver-update-legacy && npm run setup-env",
"postinstall": "npm install --prefix custom-login && npm install --prefix okta-hosted-login",
"setup-env": "node scripts/setup-env.js",
"webdriver-update": "webdriver-manager update --versions.standalone=3.141.59 --gecko false",
"webdriver-update-legacy": "webdriver-manager update --versions.standalone=3.141.59 --versions.chrome 2.45 --gecko false",
"stop": "kill -s TERM $(lsof -t -i:8080 -sTCP:LISTEN) || true",
"build:okta-hosted-login": "cd ./okta-hosted-login && npm install --production=false && npm run build",
"build:custom-login": "cd ./custom-login && npm install --production=false && npm run build",
"build": "npm run build:okta-hosted-login && npm run build:custom-login",
"start": "node ./heroku/server.js",
"dev": "nodemon ./heroku/server.js",
"pull-samples": "gulp pull-samples"
},
"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",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"axios": "^1.7.4",
"dotenv": "^8.6.0",
"eslint": "^8.53.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"find-process": "^1.4.7",
"globby": "^11.1.0",
"jasmine-reporters": "^2.5.1",
"minimist": "^1.2.7",
"nodemon": "^3.0.1",
"platform": "^1.3.6",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"typescript": "^4.6.2",
"wait-on": "^8.0.1"
},
"engines": {
"npm": ">=8.3.0"
},
"private": true
}