-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "root",
"version": "0.1.0",
"homepage": "https://github.com/ljcl/storybook-addon-cssprops",
"repository": "https://github.com/ljcl/storybook-addon-cssprops.git",
"author": "Luke Clark <luke@lukeclark.com.au>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"only-allow": "^1.2.1",
"prettier": "^3.6.2",
"rimraf": "^3.0.2",
"turbo": "^2.5.5"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && changeset publish",
"build": "turbo run build --filter=!examples",
"dev": "turbo run dev --continue"
},
"packageManager": "pnpm@9.13.2"
}