-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.57 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
{
"name": "open-inspect",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"sandbox:images": "python3 packages/sandbox-images/cli.py",
"lint": "eslint .",
"lint:complexity": "node scripts/lint-complexity.mjs",
"lint:sql-portability": "node scripts/lint-sql-portability.mjs",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test --workspaces --if-present",
"test:lint-complexity": "node --test scripts/lint-complexity-message.test.mjs",
"test:lint-sql-portability": "node --test scripts/lint-sql-portability.test.mjs",
"test:deploy-aws": "node --test scripts/deploy-aws.test.mjs",
"test:rbac-bootstrap-owner": "node --experimental-transform-types --test scripts/bootstrap-workspace-owner.test.ts",
"test:user-merge-cli": "node --experimental-transform-types --test scripts/merge-split-users.test.ts",
"test:cf-logs-cli": "node --experimental-strip-types --test scripts/cf-logs.test.ts",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"typecheck": "npm run build -w @open-inspect/shared && npm run typecheck --workspaces --if-present",
"knip": "knip",
"build": "npm run build -w @open-inspect/shared && npm run build --workspaces --if-present",
"build:opencomputer-template": "npm run build-template -w @open-inspect/opencomputer-infra --",
"rbac:bootstrap-owner": "node --experimental-transform-types scripts/bootstrap-workspace-owner.ts",
"prepare": "node -e \"if (process.env.CI) process.exit(0)\" && husky"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"knip": "^6.32.1",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"wrangler": "^4.103.0"
},
"engines": {
"node": ">=22.13.0"
},
"overrides": {
"minimatch": "^10.2.5",
"undici": "^7.29.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md,yaml,yml,css}": [
"prettier --write"
],
"packages/{daytona-infra,e2b-infra,modal-infra,sandbox-runtime,sandbox-images}/**/*.py": [
"ruff check --fix",
"ruff format"
]
}
}