-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
38
39
40
41
42
43
44
45
46
47
{
"name": "contractor-os",
"private": true,
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"type-check": "turbo type-check",
"test": "turbo test",
"test:integration": "turbo test:integration",
"test:contracts": "pnpm --filter @contractor-os/web test:pact && pnpm --filter @contractor-os/api test:pact:verify",
"test:mutation:all": "pnpm --filter @contractor-os/shared test:mutation && pnpm --filter @contractor-os/api test:mutation && pnpm --filter @contractor-os/web test:mutation",
"test:mutation:changed": "node scripts/mutation-changed.mjs",
"clean": "turbo clean"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"bcrypt",
"cypress",
"sharp"
],
"overrides": {
"handlebars": ">=4.7.9",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=4.0.0 <9.0.7": "9.0.7",
"minimatch@>=10.0.0 <10.2.3": "10.2.3",
"multer": ">=2.1.1",
"lodash": ">=4.18.0",
"path-to-regexp": ">=8.4.0",
"serialize-javascript": ">=7.0.3",
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"fast-uri": ">=3.1.2",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4"
}
},
"devDependencies": {
"turbo": "^2.8.9",
"typescript": "^5.9.3",
"@eslint/js": "^9.28.0",
"typescript-eslint": "^8.55.0",
"eslint": "^9.28.0",
"prettier": "^3.8.1"
}
}