-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.36 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
38
39
40
41
42
43
{
"name": "integration-public",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"packages/@runlightyear/*",
"packages/util/*"
],
"scripts": {
"build": "turbo run build",
"build:docs": "turbo run build:docs",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"prettier:check": "turbo run prettier:check",
"prettier:write": "turbo run prettier:write",
"compile": "turbo run compile",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docs:extract": "turbo run docs:extract",
"docs:document": "mkdir -p temp/@runlightyear; api-documenter markdown --input-folder temp/@runlightyear --output-folder apps/docs/docs/api",
"docs:generate": "pnpm run docs:extract && pnpm run docs:document && pnpm run build:docs",
"docs:generate:dev": "pnpm run docs:extract; pnpm run docs:document",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@microsoft/api-documenter": "workspace:*",
"eslint-config-custom": "workspace:*",
"prettier": "2.8.7",
"turbo": "1.9.1"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@8.15.3",
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}