-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.55 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
{
"name": "compliance-ai",
"version": "0.0.1",
"private": true,
"description": "AI-native multi-framework compliance platform — SOC 2, GDPR, EU AI Act, ISO 27001.",
"homepage": "https://github.com/XioAISolutions/compliance-AI",
"repository": {
"type": "git",
"url": "https://github.com/XioAISolutions/compliance-AI.git"
},
"license": "Apache-2.0",
"author": "XioAI Solutions",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo run build",
"start": "pnpm --dir apps/web start --hostname 0.0.0.0",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@compliance-ai/web",
"lint": "eslint . --max-warnings=0",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"smoke:demo": "node scripts/smoke-demo.mjs",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"db:push": "turbo run db:push --filter=@compliance-ai/db",
"db:generate": "turbo run db:generate --filter=@compliance-ai/db",
"db:migrate": "turbo run db:migrate --filter=@compliance-ai/db",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\""
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.0.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"eslint": "^9.23.0",
"eslint-plugin-react-hooks": "7.0.1",
"prettier": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"tsx": "^4.19.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.2",
"vitest": "^3.2.4"
}
}