-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.92 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
{
"name": "DarkAuth",
"version": "1.0.0",
"license": "AGPL-3.0",
"description": "Zero-knowledge authentication system with OIDC compatibility",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:ui\" \"npm run dev:admin\" \"npm run dev:api\"",
"dev:api": "npm run dev -w @DarkAuth/api",
"dev:ui": "npm run dev -w @DarkAuth/user-ui",
"dev:admin": "npm run dev -w @DarkAuth/admin-ui",
"dev:brochureware": "npm run dev -w @DarkAuth/brochureware",
"build": "node scripts/build-workspaces.mjs",
"build:ui": "npm run build -w @DarkAuth/user-ui",
"build:admin": "npm run build -w @DarkAuth/admin-ui",
"build:api": "npm run build -w @DarkAuth/api",
"start": "npm run start -w @DarkAuth/api",
"test:report": "npm run test:report -w @DarkAuth/test-suite",
"test:install": "npm run install:playwright -w @DarkAuth/test-suite",
"test:screenshots": "rm -rf packages/test-suite/test-results-light packages/test-suite/test-results-dark && npm --workspace @DarkAuth/test-suite run pretest && (cd packages/test-suite && COLOR_SCHEME=light PW_REPORTER=dot PW_ARTIFACTS=on npx playwright test --reporter=dot --workers=1 --output=test-results-light) && (cd packages/test-suite && COLOR_SCHEME=dark PW_REPORTER=dot PW_ARTIFACTS=on npx playwright test --reporter=dot --workers=1 --output=test-results-dark) && node packages/brochureware/scripts/collect-screenshots.js",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"check": "npm run check --workspaces --if-present",
"check:fix": "npm run check:fix --workspaces --if-present",
"tidy": "npm run tidy --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"db:push": "npm run db:push -w @DarkAuth/api",
"db:generate": "npm run db:generate -w @DarkAuth/api",
"db:migrate": "npm run db:migrate -w @DarkAuth/api",
"db:wipe": "npm run db:wipe -w @DarkAuth/api",
"install:script": "npm run install:script -w @DarkAuth/api",
"demodb:wipe": "npm run demodb:wipe -w @DarkAuth/demo-app",
"demodb:push": "npm run demodb:push -w @DarkAuth/demo-app",
"demo:dev": "concurrently \"npm run dev -w @DarkAuth/demo-app\" \"npm run server -w @DarkAuth/demo-app\"",
"clean": "rm -rf packages/api/data packages/demo-app/data ./config.yaml ../config.yaml ../../config.yaml ../../../config.yaml packages/api/config.yaml && echo \"Clean complete: install state removed.\""
},
"engines": {
"node": ">=24.0.0"
},
"overrides": {
"esbuild": "^0.25.10"
},
"dependencies": {
"concurrently": "^9.2.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"semantic-release": "^25.0.2"
}
}