This repository was archived by the owner on Jan 2, 2024. It is now read-only.
forked from ForgeRock/forgerock-javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@forgerock/javascript-sdk",
"description": "ForgeRock JavaScript SDK",
"engines": {
"node": ">= 16.0.0 <17.0.0",
"npm": ">= 7.0.0"
},
"private": true,
"scripts": {
"build": "nx run javascript-sdk:tsc && nx run javascript-sdk:tsc:cjs && nx run javascript-sdk:build",
"build:analyze": "NODE_ENV=analyze nx run javascript-sdk:build --skipNxCache",
"clean": "shx rm -rf ./{coverage,bundles,dist,docs,lib,lib-esm,node_modules,tests,tmp,todos,users}/ ./samples/*/node_modules/ ./samples/_static/js/*/ ./samples/todo-api/{todos,users} ./packages/*/{bundles,lib,lib-esm}/ && git clean -fX -e \"!.env\"",
"docs": "typedoc packages/javascript-sdk",
"format:staged": "pretty-quick --staged",
"lint": "nx affected --target=lint",
"prepublishOnly": "npm run clean && npm i && npm run build && npm t",
"build:reactjs-todo": "nx run reactjs-todo:build",
"build:angular-todo": "nx run angular-todo:build",
"prepare": "husky install",
"start:e2e": "nx run autoscript-apps:serve",
"start:embedded-login": "nx serve embedded-login",
"start:central-login": "nx serve central-login",
"start:reactjs-todo": "nx run-many --target=serve --projects=reactjs-todo,todo-api",
"start:angular-todo": "nx run angular-todo:config && nx run-many --target=serve --projects=angular-todo,todo-api",
"start:server": "nx run mock-api:serve",
"start:server:live": "NODE_ENV=LIVE nx run mock-api:serve:live",
"test": "npm run test:unit -- --skipNxCache && npm run test:integration -- --skipNxCache && npm run test:e2e -- --skipNxCache",
"test:e2e": "nx affected:e2e",
"test:e2e:live": "nx run autoscript-suites:e2e --configuration=live",
"test:integration": "nx affected --target=test --configuration=integration",
"test:unit": "nx affected --target=test",
"watch": "nx run autoscript-apps:build:development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForgeRock/forgerock-javascript-sdk.git"
},
"author": "ForgeRock",
"bugs": {
"url": "https://github.com/ForgeRock/forgerock-javascript-sdk/issues"
},
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk#readme",
"devDependencies": {
"@commitlint/config-nx-scopes": "^16.2.1",
"@commitlint/prompt": "^16.2.3",
"@nrwl/angular": "13.10.2",
"@nrwl/cli": "13.10.2",
"@nrwl/eslint-plugin-nx": "13.10.2",
"@nrwl/express": "13.10.2",
"@nrwl/jest": "13.10.2",
"@nrwl/js": "13.10.2",
"@nrwl/linter": "13.10.2",
"@nrwl/node": "13.10.2",
"@nrwl/nx-cloud": "13.3.1",
"@nrwl/react": "13.10.2",
"@nrwl/web": "13.10.2",
"@nrwl/workspace": "13.10.2",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.145",
"@swc/helpers": "^0.3.5",
"@types/express": "4.17.13",
"@types/jest": "^27.0.0",
"@types/jest-dev-server": "^5.0.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"@typescript-eslint/typescript-estree": "^4.7.0",
"babel-jest": "27.2.3",
"eslint": "8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom": "^27.3.1",
"jest-junit": "^12.0.0",
"jest-preset-angular": "11.0.0",
"nx": "13.10.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.2",
"shx": "^0.3.2",
"swc-loader": "^0.1.15",
"ts-jest": "^27.0.7",
"ts-loader": "^8.0.17",
"typedoc": "^0.17.7",
"typescript": "^4.0.0",
"webpack": "^5.64.1",
"webpack-cli": "^4.7.2"
},
"workspaces": [
"e2e/*",
"packages/*",
"samples/*"
]
}