-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.3 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.3 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
{
"name": "paa-poc",
"version": "1.0.0",
"description": "POC for Plateforme d'Aide Administrative - Business Logic Encoding",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"dev": "ts-node",
"docs:generate": "ts-node scripts/generateVisualizationDocs.ts",
"docs:metadata": "ts-node scripts/generateMachinesMetadata.ts",
"docs:legal-sources": "ts-node scripts/generateLegalSources.ts",
"docs:individual": "ts-node scripts/generateIndividualMetadata.ts",
"rules:metadata": "ts-node scripts/generate-rules-metadata.ts",
"features:metadata": "ts-node scripts/generate-features-metadata.ts",
"docs:build": "npm run docs:metadata && npm run rules:metadata && npm run features:metadata && npm run docs:individual && npm run docs:generate",
"check:versions": "ts-node scripts/checkVersionCompliance.ts",
"check:versions:strict": "ts-node scripts/checkVersionCompliance.ts --strict",
"monitor:legal": "ts-node scripts/monitorLegalSources.ts",
"monitor:legal:state": "ts-node scripts/monitorLegalSources.ts --state",
"auto-update": "ts-node scripts/autoUpdateFromMonitoring.ts",
"auto-update:dry-run": "ts-node scripts/autoUpdateFromMonitoring.ts --dry-run",
"astro:dev": "cd docs-astro && npm run dev",
"astro:build": "cd docs-astro && npm run build",
"astro:preview": "cd docs-astro && npm run preview",
"astro:preview:local": "cd docs-astro && npm run preview:local",
"validate:links": "ts-node scripts/validate-links.ts",
"validate:links:local": "ts-node scripts/validate-links.ts --base-path /",
"add-law": "ts-node scripts/add-new-law.ts",
"generate:rules": "ts-node scripts/generate-rules-from-features.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:visualization": "jest visualization/",
"cucumber": "cucumber-js",
"test:docs": "playwright test",
"test:docs:ui": "playwright test --ui",
"test:docs:smoke": "playwright test tests/e2e/docs/static-pages.spec.ts tests/e2e/docs/dynamic-routes.spec.ts",
"test:docs:headed": "playwright test --headed",
"test:docs:debug": "playwright test --debug",
"test:docs:report": "playwright show-report playwright-report",
"playwright:install": "playwright install --with-deps",
"prepare": "husky"
},
"keywords": [
"legal-tech",
"civic-tech",
"belgium",
"business-rules",
"xstate",
"gherkin"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^12.2.0",
"@cucumber/gherkin": "^36.1.0",
"@cucumber/messages": "^30.1.0",
"@playwright/test": "^1.56.1",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^25.0.1",
"playwright": "^1.56.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.69.0",
"json-rules-engine": "^7.3.1",
"xstate": "^5.24.0"
}
}