-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.07 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.07 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ghost-blog-buster",
"author": "Philippe L'ATTENTION <https://github.com/PhilDL>",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/PhilDL/ts-ghost"
},
"workspaces": [
"apps/*",
"packages/*"
],
"version": "0.0.4",
"scripts": {
"dev": "turbo run dev",
"start": "pnpm --filter=@ts-ghost/ghost-blog-buster start",
"playground:admin-api": "pnpm --filter=@ts-ghost/admin-api playground",
"playground:content-api": "pnpm --filter=@ts-ghost/content-api playground",
"docs:dev": "pnpm --filter=@ts-ghost/docs dev",
"remix:dev": "pnpm --filter=@examples/remix dev",
"build": "turbo run build",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"test:integration:watch": "turbo run test:integration:watch",
"lint": "turbo run lint",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test-ci": "turbo run test-ci",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm turbo run build && changeset publish",
"validate": "turbo run lint typecheck test",
"format:write": "prettier --write \"**/*.{ts,tsx,md}\"",
"format": "prettier --check \"**/*.{ts,tsx,md}\"",
"sherif": "pnpm dlx sherif@latest"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/eslintrc": "catalog:eslint",
"@eslint/js": "catalog:eslint",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@turbo/gen": "2.9.3",
"eslint": "catalog:eslint",
"eslint-config-prettier": "catalog:eslint",
"eslint-config-turbo": "catalog:eslint",
"eslint-plugin-prettier": "catalog:eslint",
"globals": "^17.4.0",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"turbo": "2.9.3",
"typescript": "catalog:",
"typescript-eslint": "catalog:eslint"
},
"engines": {
"node": "22"
},
"packageManager": "pnpm@10.28.0"
}