-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.45 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.45 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
{
"name": "content-monorepo",
"version": "1.0.0",
"description": "content ts monorepo",
"scripts": {
"build": "dotenv -- turbo run build",
"clean": "rm -rf .turbo node_modules packages/**/.turbo packages/**/dist packages/**/node_modules servers/**/logs servers/**/.turbo servers/**/dist servers/**/node_modules lambdas/**/logs lambdas/**/.turbo lambdas/**/dist lambdas/**/node_modules infrastructure/**/dist infrastructure/**/node_modules infrastructure/**/.turbo infrastructure/**/cdktf.out",
"db:dynamo-seed": "dotenv -- turbo run db:dynamo-seed",
"db:generate-prisma-client": "dotenv -- turbo run db:generate-prisma-client",
"dev": "dotenv -- turbo dev",
"fix-mismatches": "syncpack fix-mismatches && pnpm install",
"format": "turbo run format",
"lint": "turbo run lint",
"list-mismatches": "syncpack list-mismatches",
"list-packages": "syncpack list",
"migrate:prisma-reset": "dotenv -- turbo run migrate:prisma-reset",
"preinstall": "npx only-allow pnpm",
"synth": "dotenv -- turbo run synth",
"test-integrations": "dotenv -- turbo run test-integrations --no-cache",
"test": "dotenv -- turbo run test"
},
"prisma": {
"seed": "dotenv -- turbo run db:prisma-seed"
},
"engines": {
"node": "^20.12"
},
"packageManager": "pnpm@9.9.0",
"dependencies": {
"dotenv-cli": "latest"
},
"devDependencies": {
"syncpack": "^13.0.0",
"tsconfig": "workspace:*",
"turbo": "^2.1.1"
}
}