-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.35 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.35 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@23blocks/source",
"version": "0.0.0",
"description": "23blocks SDK - A modular, framework-agnostic SDK for JSON:API backends",
"license": "MIT",
"author": "23blocks <hello@23blocks.com>",
"repository": {
"type": "git",
"url": "https://github.com/23blocks-OS/frontend-sdk.git"
},
"homepage": "https://23blocks.com",
"keywords": [
"23blocks",
"sdk",
"typescript",
"typescript-sdk",
"api-client",
"backend-as-a-service",
"baas",
"react",
"react-hooks",
"angular",
"angular-services",
"nextjs",
"jsonapi",
"authentication",
"ecommerce",
"crm",
"headless-backend",
"saas",
"modular-architecture",
"developer-tools",
"open-source"
],
"private": true,
"scripts": {
"build": "nx run-many -t build",
"build:affected": "nx affected -t build",
"test": "npm run test:unit",
"test:affected": "nx affected -t test",
"test:unit": "vitest run --project unit",
"test:unit:watch": "vitest --project unit",
"test:integration": "vitest run --project integration",
"test:workflows": "vitest run --project workflows",
"test:contracts": "vitest run --project contracts",
"test:all": "vitest run",
"test:consumers": "echo 'Consumer tests not yet configured'",
"test:wait-for-api": "npx ts-node tests/integration/setup/wait-for-api.ts",
"lint": "nx run-many -t lint",
"typecheck": "nx run-many -t typecheck",
"clean": "nx reset && rm -rf packages/*/dist node_modules/.cache",
"graph": "nx graph",
"release": "nx release",
"release:dry-run": "nx release --dry-run",
"release:version": "nx release version",
"release:changelog": "nx release changelog",
"release:publish": "nx release publish",
"local-registry": "nx local-registry",
"local:publish": "nx run-many -t build && npm run yalc:push",
"yalc:push": "for pkg in packages/*; do (cd $pkg && yalc push); done",
"yalc:publish": "for pkg in packages/*; do (cd $pkg && yalc publish); done",
"docker:up": "docker-compose -f docker/docker-compose.yml up -d",
"docker:down": "docker-compose -f docker/docker-compose.yml down -v",
"docker:logs": "docker-compose -f docker/docker-compose.yml logs -f",
"prepare": "nx run-many -t build"
},
"devDependencies": {
"@angular/compiler": "^20.3.16",
"@angular/compiler-cli": "^20.3.16",
"@angular/core": "^20.3.16",
"@nx/js": "22.2.3",
"@nx/rollup": "^22.2.3",
"@nx/vitest": "22.2.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/node": "20.19.9",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^2.1.8",
"ng-packagr": "^20.3.2",
"nx": "22.2.3",
"prettier": "^3.1.0",
"rxjs": "^7.8.2",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"verdaccio": "^6.0.5",
"vite": "^6.0.0",
"vitest": "^2.1.8",
"yalc": "^1.0.0-pre.53"
},
"workspaces": [
"packages/*"
],
"packageManager": "npm@10.0.0",
"engines": {
"node": ">=18.0.0"
},
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}
}