-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"private": true,
"type": "module",
"name": "@jkomyno/pnpm-monorepo-example",
"description": "Practical example of a `TypeScript` monorepo with `pnpm`, `turborepo`, and `vitest`",
"repository": "https://github.com/jkomyno/pnpm-monorepo-example.git",
"author": {
"name": "Alberto Schiabel",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"pnpm": ">=8"
},
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"check:exports": "turbo run check:exports",
"clean": "turbo run clean",
"lint:ci": "biome ci",
"lint": "biome check --fix --unsafe",
"test": "pnpm -r --if-present test",
"test:unit": "pnpm -r --if-present test:unit",
"test:integration": "pnpm -r --if-present test:integration",
"prepare": "is-ci || husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "^1.9.4",
"@types/node": "20.9.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.11",
"rimraf": "^6.0.1",
"taze": "^0.17.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.{js,ts,cjs,mjs,md,json,jsonc}": "biome ci --no-errors-on-unmatched"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}