-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "banalize-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"core": "pnpm --filter=@banalize/core",
"ui": "pnpm --filter=@banalize/ui",
"build": "turbo build",
"build:packages": "turbo build --filter={./packages/*}",
"clean": "turbo clean",
"commit": "gitmoji -c",
"dev": "turbo dev",
"e2e": "pnpm --filter=@banalize/e2e",
"e2e:ui": "pnpm --filter=@banalize/e2e test:ui",
"e2e:coverage": "pnpm --filter=@banalize/e2e test:coverage",
"e2e:coverage:core": "pnpm --filter=@banalize/e2e test:coverage:core",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"packages": "pnpm --filter={./packages/*}"
},
"devDependencies": {
"@banalize/eslint-config": "workspace:*",
"@banalize/stylelint-config": "workspace:*",
"@banalize/typescript-config": "workspace:*",
"gitmoji-cli": "^9.7.0",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"turbo": "2.9.18"
},
"packageManager": "pnpm@10.17.0",
"engines": {
"node": ">=18"
}
}