-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
39 lines (39 loc) · 1.12 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
{
"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 <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.23.0",
"concurrently": "^7.2.2",
"eslint": "^8.17.0",
"eslint-config-react-app": "^7.0.1",
"only-allow": "^1.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"turbo": "latest"
},
"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 --no-cache --parallel --continue"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"webpack": "^5"
}
}
}