-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
36
37
38
39
40
41
{
"name": "@cloudmix-dev/workertown",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --no-cache --continue --concurrency=30",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules",
"lint": "biome lint ./{packages,examples,internal,www}/*",
"fmt": "biome format --write ./{packages,examples,internal,www}/*",
"ci": "biome ci ./{packages,examples,internal,www}/*",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo build --filter='./{packages,internal}/*' && changeset publish",
"postinstall": "npx husky install"
},
"devDependencies": {
"@biomejs/biome": "~1.3.3",
"@changesets/cli": "~2.26.2",
"@commitlint/cli": "~18.0.0",
"@commitlint/config-conventional": "~18.0.0",
"@miniflare/d1": "~2.14.1",
"@miniflare/kv": "~2.14.1",
"@miniflare/queues": "~2.14.1",
"@miniflare/r2": "~2.14.1",
"@miniflare/storage-memory": "~2.14.1",
"@types/sinon": "~17.0.1",
"ava": "~5.3.1",
"changeset": "~0.2.6",
"husky": "~8.0.3",
"sinon": "~17.0.1",
"tsx": "~3.14.0",
"turbo": "~1.10.16",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}