forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 784 Bytes
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
{
"private": false,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency 11",
"lint": "turbo lint",
"clean": "turbo clean",
"test": "turbo test",
"check-types": "turbo check-types",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-prettier": "prettier --check \"**/*.{ts,tsx,md}\"",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"freshbuild": "pnpm clean && pnpm install && pnpm build"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"turbo": "latest"
},
"packageManager": "pnpm@7.15.0",
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}