-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "locky",
"version": "0.1.0",
"private": true,
"description": "BPMN Process Orchestration Framework with automatic infrastructure generation",
"repository": {
"type": "git",
"url": "https://github.com/your-org/locky"
},
"license": "MIT",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo run clean && rimraf node_modules",
"typecheck": "turbo run typecheck",
"demo": "pnpm --filter demo dev",
"demo:build": "pnpm --filter demo build",
"demo:start": "pnpm --filter demo start"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^20.10.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.5",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}