-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 958 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
{
"name": "kit",
"private": true,
"description": "an ever expanding library of React components by @atlrdsgn",
"license": "MIT",
"author": "chvndler",
"workspaces": [
"pkgs/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:docs": "turbo run build --filter=apps/docs",
"build:kit": "turbo run build --filter=pkgs/*",
"build:www": "turbo run build --filter=apps/www",
"changeset": "changeset",
"clean": "turbo run clean",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pretti": "prettier --write \"**/*.{ts,tsx,md}\"",
"reset": "rm -rf node_modules && rm -rf .yarn/ && rm -rf yarn.lock && yarn cache clean && yarn install",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"eslint": "^9.1.0",
"eslint-config-atlrdsgn": "*",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"turbo": "latest"
}
}