-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (29 loc) · 903 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
{
“name”: “assetflow-ai”,
“version”: “1.0.0”,
“private”: true,
“workspaces”: [
“apps/*”,
“packages/*”
],
“scripts”: {
“dev”: “turbo run dev”,
“build”: “turbo run build”,
“test”: “turbo run test”,
“lint”: “turbo run lint”,
“deploy”: “./scripts/deploy.sh”,
“docker:up”: “docker-compose -f docker/docker-compose.yml up”,
“docker:down”: “docker-compose -f docker/docker-compose.yml down”,
“infra:plan”: “cd infrastructure/terraform && terraform plan”,
“infra:apply”: “cd infrastructure/terraform && terraform apply”
},
“devDependencies”: {
“turbo”: “^1.10.0”,
“prettier”: “^3.0.0”,
“eslint”: “^8.0.0”,
“typescript”: “^5.0.0”
},
“engines”: {
“node”: “>=18.0.0”
}
}