-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 961 Bytes
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
{
"name": "checkin-monorepo",
"private": true,
"license": "BSD-4-Clause",
"workspaces": [
"packages/*",
"*-app",
"*-function"
],
"scripts": {
"build": "npm -w checkin-app run build",
"build:functions": "npm run build -w s-read-function -w s-replay-function -w monitoring-relay-function -w monitoring-watchdog-function",
"build:prisma-layer": "node scripts/build-prisma-layer.mjs",
"lint": "npm -w checkin-app run lint",
"test": "npm -w checkin-app run test",
"test:ci": "npm -w checkin-app run test:ci",
"test:integration": "npm -w checkin-app run test:integration",
"check-route-coverage": "npm -w checkin-app run check-route-coverage",
"prepare": "husky"
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"checkin-app/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2"
}
}