-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "mono-repo-auth",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"format:check": "biome format .",
"clean": "turbo run clean && rimraf node_modules",
"test": "turbo run test",
"test:all": "turbo run test && playwright test",
"test:e2e": "playwright test",
"test:e2e:portal": "playwright test --project=portal",
"test:e2e:backoffice": "playwright test --project=backoffice",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@playwright/test": "^1.58.2",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"pnpm": {}
}