-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1010 Bytes
/
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
{
"name": "banalize-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"api": "pnpm --filter api",
"build": "turbo build",
"build:api": "turbo build --filter=@banalize/api --filter={./packages/*}",
"build:web": "turbo build --filter=@banalize/web --filter={./packages/*}",
"clean": "turbo clean",
"commit": "gitmoji -c",
"dev": "turbo dev",
"docker:mongodb": "docker compose up mongodb",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"web": "pnpm --filter web",
"types": "pnpm --filter types",
"packages": "pnpm --filter={./packages/*}"
},
"devDependencies": {
"@banalize/eslint-config": "workspace:*",
"@banalize/stylelint-config": "workspace:*",
"@banalize/typescript-config": "workspace:*",
"gitmoji-cli": "^9.4.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"turbo": "2.0.9"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}