-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "@pseudobun/me-monorepo",
"private": true,
"description": "Personal monorepo.",
"keywords": [
"Computer Science",
"Rust",
"Typescript",
"NextJS",
"Portfolio"
],
"homepage": "https://pseudobun.dev",
"repository": {
"type": "git",
"url": "https://github.com/pseudobun/me.git"
},
"license": "(Apache-2.0 AND MIT)",
"author": {
"name": "Urban Vidovič",
"email": "[email protected]",
"url": "https://pseudobun.dev"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm nx run-many --target=build",
"lint": "biome check --config-path configs . && pnpm nx run-many --target=lint",
"lint:fix": "biome check --config-path configs --apply . && pnpm nx run-many --target=lint:fix",
"prepare": "is-ci || husky install",
"test": "pnpm nx run-many --target=test",
"test:ci": "pnpm nx run-many --target=test:ci",
"test:cron": "cross-env CRON=true pnpm nx run-many --target=test:cron"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nx/js": "19.2.0",
"@types/node": "20.14.2",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.5",
"nx": "19.2.0",
"rimraf": "^5.0.7",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.17",
"pnpm": ">=9"
}
}