-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1007 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
34
35
{
"name": "simple-stack",
"version": "0.0.0",
"description": "Astro for apps",
"scripts": {
"dev": "turbo dev --filter='./packages/*'",
"dev:all": "turbo dev",
"build": "turbo build --filter='./packages/*'",
"build:all": "turbo build",
"test": "turbo test --filter='./packages/*'",
"e2e": "turbo e2e",
"check": "biome check packages/",
"check:apply": "biome check packages/ --apply",
"lint": "biome lint packages/",
"lint:apply": "biome lint packages/ --apply",
"format": "biome format",
"format:write": "biome format --write",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run check:apply"
},
"keywords": [
"withastro"
],
"author": "bholmesdev",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.45.3",
"@types/node": "^20.14.11",
"turbo": "^1.11.2",
"typescript": "^5.5.3"
},
"packageManager": "pnpm@8.8.0"
}