-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 3.19 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
{
"name": "ballerine-monorepo",
"author": "Ballerine.io",
"description": "Open-Source Rules & Workflow Engine for User Identity and Risk Decisioning",
"private": false,
"version": "0.4.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ballerine-io/ballerine"
},
"keywords": [
"ballerine",
"fintech",
"risk",
"verification",
"authentication",
"authorization",
"auth",
"service",
"identity",
"kyc",
"kyb"
],
"scripts": {
"kyc-manual-review-example": "nx run @ballerine/common:build && nx run @ballerine/workflows-service:setup && cross-env ENV_FILE_NAME=.env.example VITE_POOLING_TIME=3 nx run-many --target=dev --projects=@ballerine/headless-example,@ballerine/backoffice-v2,@ballerine/workflows-service",
"branchlint": "branchlint -u -c --prefix \"$(git config --global user.name)\"",
"format": "nx run-many --target=format",
"lint": "nx run-many --target=lint --projects=@ballerine/web-sdk",
"test": "nx run-many --target=test --exclude=@ballerine/backoffice,@ballerine/common",
"test:e2e": "nx run-many --target=test:e2e",
"playwright:install": "nx run-many --target=playwright:install",
"dev": "nx run-many --target=dev --projects=@ballerine/web-sdk,@ballerine/backoffice-v2",
"start": "nx run-many --target=start --projects=@ballerine/web-sdk",
"build": "nx run-many --target=build --projects=@ballerine/workflow-browser-sdk,@ballerine/web-sdk,@ballerine/workflow-core,@ballerine/workflow-node-sdk,@ballerine/rules-engine-lib,@ballerine/common",
"web-sdk:dev": "nx run @ballerine/web-sdk:dev",
"web-sdk:start": "nx run @ballerine/web-sdk:start",
"workflows-service:start": "nx run @ballerine/workflows-service:start",
"workflow-browser-sdk:build": "nx run @ballerine/workflow-browser-sdk:build",
"workflow-browser-sdk:dev": "nx run @ballerine/workflow-browser-sdk:dev",
"workflow-browser-sdk:watch": "nx run @ballerine/workflow-browser-sdk:watch",
"workflow-browser-sdk:clean": "nx run @ballerine/workflow-browser-sdk:clean",
"web-sdk:build": "nx run @ballerine/web-sdk:build",
"web-sdk:example": "nx run @ballerine/web-sdk:example",
"web-sdk:lint": "nx run @ballerine/web-sdk:lint",
"web-sdk:format": "nx run @ballerine/web-sdk:format",
"backoffice:dev": "nx run-many --target=dev --projects=@ballerine/backoffice-v2",
"workflow-builder:dev": "echo \"Error: no test specified\" && exit 1",
"web-ui:dev": "echo \"Error: no test specified\" && exit 1",
"commit": "git add . && git-cz",
"prepare": "husky install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"license": "ISC",
"devDependencies": {
"@branchlint/cli": "^1.0.4",
"@branchlint/default-config": "^1.0.2",
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"editorconfig": "^1.0.2",
"husky": "^8.0.3",
"nx": "15.0.2",
"prettier": "^2.8.7"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}