-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.19 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.19 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
{
"name": "shift-css",
"private": true,
"type": "module",
"scripts": {
"build": "cd packages/core && bun run build",
"build:all": "bun run build && bun run docs:build",
"dev": "cd packages/core && bun run dev",
"docs:dev": "cd apps/docs && bun run dev",
"docs:build": "cd apps/docs && bun run build",
"docs:preview": "cd apps/docs && bun run preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "cd packages/core && bun test",
"test:docker": "docker build -f Dockerfile.test -t shift-css-test . && docker run --rm -v $(pwd)/packages/core/tests/e2e/snapshots:/app/packages/core/tests/e2e/snapshots shift-css-test bun run --cwd packages/core test:visual",
"test:docker:update": "docker build -f Dockerfile.test -t shift-css-test . && docker run --rm -v $(pwd)/packages/core/tests/e2e/snapshots:/app/packages/core/tests/e2e/snapshots shift-css-test sh -c 'cd packages/core && bunx playwright test --update-snapshots --project=visual-chrome'"
},
"devDependencies": {
"@biomejs/biome": "2.4.9"
},
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"packages/*",
"apps/*"
]
}