-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 821 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 821 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
{
"name": "deep-obj-diff-monorepo",
"private": true,
"packageManager": "npm@10.7.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"lint": "turbo run lint",
"clean": "turbo run clean",
"example:basic": "npx ts-node --project examples/tsconfig.json examples/basic.ts",
"example:formats": "npx ts-node --project examples/tsconfig.json examples/formats.ts",
"example:advanced": "npx ts-node --project examples/tsconfig.json examples/advanced.ts"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"turbo": "^2.8.9",
"typescript": "^5.9.3"
}
}