-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pocket-monorepo",
"private": true,
"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",
"dev": "dotenv -- turbo run dev --concurrency 50",
"fix-mismatches": "syncpack fix-mismatches && pnpm install",
"format": "turbo run format",
"preinstall": "npx only-allow pnpm",
"lint": "turbo run lint",
"list-mismatches": "syncpack list-mismatches",
"list-packages": "syncpack list",
"prepare": "husky",
"semantic-release": "dotenv -- turbo run semantic-release --concurrency 1",
"synth": "dotenv -- turbo run synth",
"test": "dotenv -- turbo run test",
"test-integrations": "dotenv -- turbo run test-integrations"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"dotenv-cli": "latest",
"husky": "9.1.6"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@pocket-tools/eslint-config": "workspace:*",
"syncpack": "^13.0.0",
"tsconfig": "workspace:*",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11"
},
"pnpm": {
"overrides": {
"minimist@<0.2.1": ">=0.2.1",
"@grpc/grpc-js@>=1.10.0 <1.10.9": ">=1.10.9",
"minimist@<0.2.4": ">=0.2.4",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"undici@>=6.14.0 <6.19.2": ">=6.19.2",
"axios@>=1.3.2 <=1.7.3": ">=1.7.4",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=2.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=5.2.1 <=6.5.6": ">=6.5.7",
"micromatch@<4.0.8": ">=4.0.8",
"send@<0.19.0": ">=0.19.0",
"dset@<3.1.4": ">=3.1.4",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"cookie@<0.7.0": ">=0.7.0",
"elliptic@<6.5.6": ">=6.5.6"
}
}
}