-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.45 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
{
"name": "pluv-monorepo",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"scripts": {
"build": "turbo run build",
"build:internal": "turbo run build --filter=./internal/*",
"build:packages": "turbo run build --filter=./packages/*",
"changeset": "changeset",
"clean": "turbo run clean && rm -rf node_modules",
"commit": "cz",
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --parallel --filter=./apps/*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"release": "turbo run build --filter=./packages/* && changeset publish",
"services:start": "docker compose up -d",
"services:stop": "docker compose down",
"test": "turbo run test",
"test:packages": "turbo run test --filter=@pluv-tests/e2e...",
"turbo": "turbo",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@pluv-internal/tailwind-config": "workspace:^",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-pluv": "workspace:^",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"turbo": "^2.3.3"
}
}