This repository was archived by the owner on Mar 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "credential-showcase-api.workspace",
"private": true,
"description": "Credential Showcase API (Workspace)",
"version": "0.1.0",
"author": "4Sure",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"generate:models": "pnpm -r --if-present --stream run generate:models",
"build": "turbo run build",
"build:clean": "pnpm -r --if-present --stream run build:clean",
"prettier": "prettier --write \"{packages,apps,__tests__,!dist}/**/*.{ts,js,json,md}\"",
"prettier:check": "prettier --check \"{packages,apps,__tests__,!dist}/**/*.{ts,js,json,md}\"",
"test:ci": "jest --config=jest.json",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose --config=jest.json --coverage=true --detectOpenHandles"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@types/supertest": "^6.0.2",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"turbo": "^2.4.0",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 20.0.0 < 22"
},
"packageManager": "pnpm@9.12.3"
}