-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "mcoordinate",
"version": "0.0.1",
"description": "",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Modest-Human-Brands/mcoordinate.git"
},
"type": "module",
"private": true,
"engines": {
"node": "^20.15.0 || ^22.11.0 || ^24.13.0",
"pnpm": "^9.15.0 || ^10.2.0",
"bun": "^1.2.9"
},
"packageManager": "bun@1.3.11",
"scripts": {
"prepare": "husky || true",
"dev": "sh -c \"iii-cli start -c iii-config.yaml & iii-cli console --enable-flow\"",
"detect": "gitleaks git --verbose",
"lint": "eslint . --fix",
"format": "prettier . --write",
"build": "motia build",
"start": "motia start",
"clean": "rm -rf .motia dist",
"docker:build": "docker build --build-arg VERSION=dev --build-arg BUILD_TIME=now -t mcoordinate:dev .",
"docker:start": "docker run --detach --name mcoordinate-dev --env-file .env.prod -p 3500:3000 mcoordinate:dev"
},
"dependencies": {
"motia": "^1.0.3-rc.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@dotenvx/dotenvx": "^1.59.1",
"@types/bun": "^1.3.11",
"eslint": "^10.1.0",
"eslint-config-unjs": "^0.6.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}