-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 KB
/
package.json
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
{
"name": "task-workflow",
"version": "1.0.0",
"description": "Experimental Workflow Application with Event Sourcing",
"workspaces": [
"packages/*",
"services/*",
"web-apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:watch": "turbo run dev:watch --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"infra:up": "cd task-workflow-infra && docker-compose -f docker-compose.yml up -d",
"infra:down": "cd task-workflow-infra && docker-compose -f docker-compose.yml down",
"apply-templates": "ts-node scripts/apply-templates.ts",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:generate": "turbo run db:generate --parallel",
"test:reset": "turbo run test:reset --parallel"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"pettier": "^1.1.0",
"typescript": "^4.7.4",
"ts-node": "^10.9.1",
"turbo": "^1.3.1"
}
}