-
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) · 854 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 854 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
{
"name": "@rotorsoft/es-course-root",
"version": "0.0.1",
"description": "Event-sourced shopping cart — ES Course",
"author": "ES Course",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22.18.0",
"pnpm": ">=10.27.0"
},
"packageManager": "pnpm@10.29.3",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"typecheck": "npx tsc --noEmit --project tsconfig.json",
"dev": "pnpm -F @rotorsoft/es-course-app dev:api & pnpm -F @rotorsoft/es-course-app dev:client",
"start": "pnpm -F @rotorsoft/es-course-app start"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"playwright": "^1.58.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@rotorsoft/act": "0.16.0"
}
}