-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.41 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
{
"name": "ePDS",
"version": "0.5.0",
"private": true,
"description": "ePDS — extended Personal Data Server for AT Protocol with passwordless OTP authentication",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.9",
"//workspaces": "This field is only read by @manypkg/get-packages (used by Changesets) to put us into single-package mode. pnpm ignores it because pnpm-workspace.yaml takes precedence for actual workspace resolution. Do not remove without reading docs/PUBLISHING.md.",
"workspaces": [
"."
],
"scripts": {
"build": "pnpm --recursive build",
"dev": "pnpm --recursive --parallel dev",
"dev:pds": "pnpm --filter @certified-app/pds-core dev",
"dev:auth": "pnpm --filter @certified-app/auth-service dev",
"dev:demo": "pnpm --filter @certified-app/demo dev",
"start": "pnpm --recursive --parallel start",
"typecheck": "tsc --build tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "TSX_TSCONFIG_PATH=e2e/tsconfig.e2e.json node --import tsx/esm ./node_modules/@cucumber/cucumber/bin/cucumber-js --config e2e/cucumber.mjs",
"test:e2e:headless": "E2E_HEADLESS=true TSX_TSCONFIG_PATH=e2e/tsconfig.e2e.json node --import tsx/esm ./node_modules/@cucumber/cucumber/bin/cucumber-js --config e2e/cucumber.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/changelog-audience-summary.mjs",
"release": "changeset tag",
"stamp-version": "./scripts/stamp-version.sh",
"docker:build": "./scripts/docker-build.sh",
"jwk:generate": "./scripts/generate-es256-jwk.cjs"
},
"dependencies": {
"pino": "^10.3.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@cucumber/cucumber": "^12.7.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/pino": "^7.0.5",
"@vitest/coverage-v8": "^4.1.0",
"dotenv": "^17.3.1",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.0"
},
"type": "module"
}