-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@turbopandarepo/root",
"version": "0.0.0",
"private": true,
"description": "Turbo powered Monorepo featuring PandaCSS and Storybook with ESLint Flat Config",
"license": "MIT",
"author": "Luciano Amodio <adamquadmon@gmail.com>",
"type": "module",
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean && turbo daemon clean && rimraf node_modules",
"dev": "turbo dev --no-cache --continue",
"format": "prettier --ignore-path .gitignore \"**/*.{js,ts,tsx,md,json}\" --ignore-unknown --check",
"format:write": "pnpm format --write",
"gen:component": "turbo gen add-component && turbo run prepare",
"preinstall": "npx only-allow pnpm",
"lint": "turbo lint",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\"",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"reinstall": "pnpm clean && pnpm install",
"release": "turbo build --filter=docs^... && changeset publish",
"storybook:build": "turbo run storybook:build --parallel",
"storybook:dev": "turbo run storybook:dev --parallel",
"storybook:move": "turbo run storybook:move --filter=docs && turbo run storybook:move --filter=!docs",
"storybook:vercel": "pnpm storybook:build && pnpm storybook:move",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@turbo/gen": "^1.10.15",
"@turbopandarepo/eslint-config": "workspace:*",
"@turbopandarepo/tsconfig": "workspace:*",
"@types/react": "^18.2.25",
"cspell": "^7.3.7",
"eslint": "^8.50.0",
"knip": "^2.30.1",
"markdownlint": "^0.31.1",
"markdownlint-cli": "^0.37.0",
"npm-package-json-lint": "^7.0.0",
"npm-package-json-lint-config-default": "^6.0.0",
"prettier": "^3.0.3",
"prettier-plugin-curly": "^0.1.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6",
"rimraf": "^5.0.5",
"sentences-per-line": "^0.2.1",
"turbo": "^1.10.15",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.6.7"
}