-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
45 lines (45 loc) · 1.85 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
{
"name": "@okta/samples-nodejs-express-4",
"description": "Express-4 Sample Applications for Okta",
"version": "3.2.0",
"repository": {
"type": "git",
"url": "https://github.com/okta/samples-nodejs-express-4.git"
},
"bugs": "https://github.com/okta/samples-nodejs-express-4/issues",
"license": "Apache-2.0",
"homepage": "https://github.com/okta/samples-nodejs-express-4",
"scripts": {
"banners": "node tools/maintain-banners.js {common,custom-login,okta-hosted-login,resource-server,tools}/{*.js,**/*.js} ./*.js common/assets/css/samples.css",
"custom-login-server": "node custom-login/server.js",
"test:custom-login": "protractor okta-oidc-tck/e2e-tests/custom-login/conf.js",
"okta-hosted-login-server": "node okta-hosted-login/server.js",
"test:okta-hosted-login": "protractor okta-oidc-tck/e2e-tests/okta-hosted-login/conf.js",
"resource-server": "node resource-server/server.js",
"test:resource-server": "jasmine okta-oidc-tck/resource-server/specs/okta-resource-server-spec.js",
"test": "npm run test:e2e",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login && npm run test:resource-server",
"pretest": "node ./scripts/update-se-drivers.js && node scripts/setup-env.js",
"webdriver-update-2.45": "webdriver-manager update --versions.standalone=3.141.59 --versions.chrome 2.45 --gecko false && node scripts/setup-env.js"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"axios": "^1.6.8",
"find-process": "^1.4.3",
"jasmine": "^4.5.0",
"jasmine-reporters": "^2.5.2",
"platform": "^1.3.6",
"wait-on": "^7.2.0"
},
"dependencies": {
"@okta/jwt-verifier": "^3.2.2",
"@okta/oidc-middleware": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.19.2",
"express-session": "^1.17.1",
"mustache-express": "^1.3.2"
}
}