-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.87 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
{
"name": "iceberg-feature-store",
"private": true,
"scripts": {
"doctor": "node scripts/doctor.mjs",
"predev": "node scripts/doctor.mjs",
"dev": "sh scripts/dev.sh",
"dev:web": "pnpm --filter @iceberg-feature-store/web dev",
"dev:api": "cd services/api && .venv/bin/uvicorn main:app --reload --port ${API_PORT:-8000}",
"build": "pnpm --filter @iceberg-feature-store/web build",
"typecheck": "pnpm --filter @iceberg-feature-store/web typecheck",
"lint": "pnpm --filter @iceberg-feature-store/web lint",
"lint:api": "cd services/api && .venv/bin/ruff check .",
"test:api": "cd services/api && .venv/bin/python -m pytest",
"check:structure": "cd services/api && .venv/bin/python -m pytest tests/test_structure.py -v",
"test:e2e": "pnpm --filter @iceberg-feature-store/web exec playwright test"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"pnpm": {
"overrides": {
"@babel/core": "7.29.6",
"@hono/node-server": "1.19.15",
"ajv@<7.0.0": "6.14.0",
"ajv@>=7.0.0 <9.0.0": "8.18.0",
"body-parser": "2.3.0",
"brace-expansion@<2.0.0": "1.1.18",
"brace-expansion@>=2.0.0 <3.0.0": "2.1.3",
"browserslist": "4.28.7",
"express-rate-limit": "8.2.2",
"fast-uri": "3.1.5",
"flatted": "3.4.2",
"hono": "4.12.34",
"ip-address": "10.3.1",
"js-yaml": "4.3.1",
"lodash": "4.17.21",
"minimatch@<4.0.0": "3.1.4",
"minimatch@>=9.0.0 <10.0.0": "9.0.7",
"minimatch@>=10.0.0 <11.0.0": "10.2.3",
"nanoid@<4.0.0": "3.3.18",
"path-to-regexp": "8.4.0",
"picomatch@<3.0.0": "2.3.2",
"picomatch@>=4.0.0 <5.0.0": "4.0.4",
"postcss": "8.5.23",
"postcss-selector-parser": "7.1.3",
"qs": "6.15.2",
"shell-quote": "1.9.0",
"sharp": "0.35.3"
}
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">=9"
}
}