-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.39 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
84
{
"name": "3-layer-architecture",
"version": "1.0.0",
"description": "Scalable 3-layer application architecture",
"private": true,
"workspaces": [
"backend"
],
"scripts": {
"install:all": "npm install && npm run install:service && npm run install:backend && npm run install:frontend",
"install:service": "python3 -m pip install -r service/agent_intake_single/requirements.txt",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm start",
"build:backend": "cd backend && npm run build",
"build:frontend": "npm run build --prefix frontend",
"test:service": "python3 -m pytest service/ -q",
"test:backend": "cd backend && npm test",
"test:frontend": "npm test --prefix frontend -- --watchAll=false",
"test:integration:backend": "cd backend && npm run test:integration",
"test:integration:frontend": "npm run test:integration --prefix frontend",
"lint:backend": "cd backend && npm run lint",
"lint:fix:backend": "cd backend && npm run lint:fix",
"format:backend": "cd backend && npm run format",
"verify:doc-claims": "node scripts/verify-doc-claims.js",
"prepare": "node -e \"try{require('husky')}catch(e){process.exit(0)}\" && husky || node -e \"process.exit(0)\""
},
"devDependencies": {
"audit-ci": "^7.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6"
},
"lint-staged": {
"backend/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"esbuild": "0.25.11"
},
"overrides": {
"dompurify": "^3.4.12",
"js-yaml": "^4.3.0",
"fast-uri": "4.1.1",
"shell-quote": "^1.9.0",
"brace-expansion": ">=5.0.8",
"@typescript-eslint/typescript-estree": {
"minimatch": "9.0.9"
},
"aws-cdk-lib": {
"minimatch": {
"brace-expansion": ">=5.0.8"
}
},
"eslint": {
"minimatch": {
"brace-expansion": ">=5.0.8"
}
},
"jest": {
"minimatch": {
"brace-expansion": ">=5.0.8"
}
},
"glob": {
"minimatch": {
"brace-expansion": ">=5.0.8"
}
},
"test-exclude": {
"minimatch": {
"brace-expansion": ">=5.0.8"
}
}
},
"peerDependencies": {
"aws-cdk-lib": "^2.262.1"
}
}