-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.96 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
{
"name": "intraq",
"version": "0.8.2",
"homepage": "https://intraq.dev",
"repository": {
"type": "git",
"url": "https://github.com/intraq-dev-ai/intraq.git"
},
"private": true,
"type": "module",
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=24.15.0 <25",
"npm": ">=11.12.1"
},
"overrides": {
"esbuild": "^0.28.1"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"predev": "npm run build:packages",
"require:node24": "node scripts/require-node24.mjs",
"dev": "node scripts/dev.mjs",
"dev:api": "npm run dev --workspace @intraq/api",
"dev:web": "npm run dev --workspace @intraq/web",
"db:generate": "npm run db:generate --workspace @intraq/db",
"db:migrate": "npm run db:migrate --workspace @intraq/db",
"db:seed": "npm run db:seed --workspace @intraq/db",
"db:validate": "npm run db:validate --workspace @intraq/db",
"demo:capture": "node scripts/capture-demo-assets.mjs",
"demo:capture:ai": "node scripts/capture-dashboard-ai-demo.mjs",
"prebuild": "npm run require:node24 && npm run db:generate",
"build": "npm run build:packages && npm run build --workspace @intraq/api && npm run build --workspace @intraq/web",
"build:packages": "npm run build --workspace @intraq/contracts && npm run build --workspace @intraq/agent-core && npm run build --workspace @intraq/db",
"start": "node apps/api/dist/server.js",
"pretype-check": "node scripts/generate-prisma-client.mjs && npm run build:packages",
"type-check": "tsc -b --pretty false",
"test:smoke": "vitest run tests/smoke",
"test": "npm run type-check && npm run test:smoke"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.58.0",
"@types/node": "^24.10.0",
"fast-check": "^3.23.2",
"javascript-obfuscator": "^4.2.2",
"tsx": "^4.20.6",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"license": "SEE LICENSE IN LICENSE.md"
}