-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 980 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 980 Bytes
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": "autoflow-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:backend": "turbo run dev --filter=@autoflow/backend",
"dev:frontend": "turbo run dev --filter=@autoflow/frontend",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"type-check": "turbo run type-check",
"setup": "./dev-setup.sh"
},
"devDependencies": {
"@turbo/gen": "^2.5.8",
"@types/jest": "^29.5.3",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.17.1",
"workspaces": [
"apps/**",
"packages/**"
],
"dependencies": {
"@types/uuid": "^11.0.0",
"react-logos": "0.1.0",
"uuid": "^13.0.0"
}
}