-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.6 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.6 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
{
"name": "thakur-deploy",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "bun test",
"dev": "concurrently -n api,build,deploy,ui -c blue,yellow,magenta,cyan --kill-others \"bun run --filter '@thakur-deploy/control-api' dev\" \"bun run --filter '@thakur-deploy/deploy-engine' dev\" \"bun run --filter '@thakur-deploy/build-worker' dev\" \"bun run --filter 'ui' dev\"",
"dev:go": "concurrently --raw -n api,build-go,deploy-go,ui -c blue,yellow,magenta,cyan --kill-others \"bun run --filter '@thakur-deploy/control-api' dev\" \"bun run build:go\" \"bun run deploy:go\" \"bun run --filter 'ui' dev\" 2>&1 | tee debug.log",
"build:go": "make -C packages/build-worker-go run",
"deploy:go": "make -C packages/deploy-engine-go run",
"generate": "bun run --filter '@thakur-deploy/control-api' generate",
"migrate": "bun run --filter '@thakur-deploy/control-api' migrate",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky",
"build": "NODE_ENV=production PLATFORM_ENV=production bun run --filter '*' build"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"bun-types": "latest",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"fast-check": "^3.15.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.0.0",
"typescript-eslint": "^8.48.1",
"vitest": "^1.0.0"
}
}