-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.62 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
{
"name": "monorepo-root",
"version": "1.0.0",
"packageManager": "[email protected]",
"type": "module",
"author": "\"Ian Wright\" <\"[email protected]\">",
"scripts": {
"build": "turbo run build",
"build:package": "node scripts/choice build",
"changeset": "changeset",
"clean": "rm -rf node_modules && pnpm -r clean",
"dev": "turbo run build --scope=@chart-io/* --no-deps && turbo run dev --no-cache --parallel --continue",
"graph": "turbo run build --graph=graph.html",
"lint": "turbo run lint",
"publish": "changeset publish",
"refresh": "pnpm clean && pnpm install",
"start": "turbo run start",
"storybook": "pnpm --filter '@chart-io/react' storybook",
"storybook:build": "pnpm --filter '@chart-io/react' build-storybook",
"storybook:deploy": "pnpm --filter '@chart-io/*' deploy-storybook",
"storybook:package": "node scripts/choice storybook",
"storybook:test": "pnpm --filter '@chart-io/*' test-storybook",
"storybook:report": "node scripts/choice coverage-storybook",
"types": "turbo run types",
"test": "turbo run test --concurrency=1",
"test:coverage": "turbo run test --concurrency=1 -- --coverage",
"test:report": "node scripts/choice test-coverage",
"test:package": "node scripts/choice test --coverage",
"test:watch": "node scripts/choice test --watchAll=true",
"version": "changeset version"
},
"np": {
"publish": false,
"tests": false
},
"publishConfig": {},
"devDependencies": {
"@changesets/cli": "2.25.0",
"chromatic": "^11.20.2",
"inquirer": "^9.1.4",
"jest": "27.5.1",
"turbo": "^2.2.3"
}
}