-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
56 lines (56 loc) · 2.48 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": "@okta/samples-js-angular",
"version": "0.0.5",
"description": "Angular Sample Applications for Okta",
"scripts": {
"lint:okta-hosted-login": "npm run lint --prefix okta-hosted-login/",
"lint:custom-login": "npm run lint --prefix custom-login/",
"lint": "npm run lint:okta-hosted-login && npm run lint:custom-login",
"test": "npm run test:e2e",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login",
"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/startResourceServer.js",
"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 run install-custom-login && npm run install-okta-hosted-login",
"setup-env": "node scripts/setup-env.js",
"install-custom-login": "cd custom-login && npm install",
"install-okta-hosted-login": "cd okta-hosted-login && npm install",
"webdriver-update-legacy": "webdriver-manager update --versions.standalone=3.141.59 --versions.chrome 2.45 --gecko false",
"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"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/okta/samples-js-angular.git"
},
"bugs": "https://github.com/okta/samples-js-angular/issues",
"homepage": "https://github.com/okta/samples-js-angular",
"devDependencies": {
"axios": "^1.6.8",
"dotenv": "^8.2.0",
"find-process": "^1.4.3",
"jasmine-reporters": "^2.5.0",
"minimist": "^1.2.6",
"nodemon": "^3.1.0",
"platform": "^1.3.6",
"wait-on": "^7.2.0"
},
"bin": {},
"dependencies": {
"express": "^4.19.2"
},
"engines": {
"node": ">=14.14"
},
"private": true
}