-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "gridkeep",
"private": true,
"version": "0.1.0",
"packageManager": "npm@10.9.4",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"schema:build": "npm run build:contracts --workspace @gridkeep/contracts",
"seed:validate": "npm run validate:seeds --workspace @gridkeep/contracts",
"dev": "npm run schema:build && npm run dev --workspace @gridkeep/eval",
"build": "npm run schema:build && npm run build --workspace @gridkeep/eval",
"test": "npm run schema:build && vitest run",
"scenario:run": "npm run scenario:run --workspace @gridkeep/eval",
"docker:up": "sh scripts/docker-up.sh",
"app:dev": "npm start --workspace @gridkeep/desktop",
"build:mac": "npm run build:mac --workspace @gridkeep/desktop"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"jsdom": "^26.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}