-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.71 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.71 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
{
"name": "@owmo/orchestrator",
"version": "0.8.4",
"private": true,
"scripts": {
"submit": "ts-node src/clients/submit.cli.ts",
"temporal": "temporal server start-dev --ui-port 8080",
"worker.render": "ts-node src/workers/worker.render.ts",
"worker.render.prod": "NODE_ENV=production ts-node src/workers/worker.render.ts",
"worker.script": "ts-node src/workers/worker.script.ts",
"worker.script.prod": "NODE_ENV=production ts-node src/workers/worker.script.ts",
"submit.prod": "NODE_ENV=production ts-node src/clients/submit.cli.ts",
"clean": "rm -rf ./lib & rm -rf ./out/*"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@inquirer/prompts": "^7.6.0",
"@owmo/engine": "^0.7.3",
"@temporalio/activity": "^1.12.1",
"@temporalio/client": "^1.12.1",
"@temporalio/worker": "^1.12.1",
"@temporalio/workflow": "^1.12.1",
"dotenv": "^17.2.0",
"jszip": "^3.10.1",
"ps-node": "^0.1.6",
"puppeteer": "^24.12.1",
"seedrandom": "^3.0.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^24.0.13",
"@types/ps-node": "^0.1.3",
"@types/seedrandom": "^3.0.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}