-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.55 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.55 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@lytics/lytics-lab",
"description": "Lytics Lab is the public workspace for open source projects.",
"respository": {
"type": "git",
"url": "https://github.com/lytics/lytics-lab.git"
},
"bugs": {
"url": "https://github.com/lytics/lytics-lab/issues"
},
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"create-entrypoint": "bash -e ./scripts/create-package -e",
"create-package": "bash -e ./scripts/create-package",
"sync-env": "bash -e ./scripts/sync-env",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run --workspace=vitest.workspace.ts",
"test:ui": "vitest --workspace=vitest.workspace.ts --ui",
"test:watch": "vitest --workspace=vitest.workspace.ts",
"test:nx": "nx run-many --target=test",
"clean": "rm -r {packages,entrypoints,web-components,viz-service}/*/{dist,build}",
"cover": "vitest run --workspace=vitest.workspace.ts --coverage",
"cover:nx": "nx run-many --target=cover",
"start": "nx run-many --target=start",
"build": "nx run-many --target=build",
"tdd": "vitest --workspace=vitest.workspace.ts",
"tdd:nx": "nx run-many --target=tdd --output-style=stream",
"typecheck": "nx run-many --target=typecheck",
"affected": "nx print-affected --select=projects",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build && changeset publish",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook build",
"test-storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev --smoke-test",
"test-storyshots": "TZ=utc vitest run ./storybook/storyshots.test.ts -c .storybook/vite.config.ts",
"prepare": "husky install",
"pre-commit": "lint-staged",
"chromatic": "chromatic"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@changesets/cli": "^2.29.7",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/view": "^6.32.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/styled-engine": "^5.16.6",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/node-logger": "^7.6.17",
"@storybook/preset-create-react-app": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@uiw/react-codemirror": "^4.23.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^1.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"husky": "^8.0.1",
"jsdom": "24",
"lint-staged": "^12.4.1",
"nx": "^18.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.1",
"react-to-webcomponent": "^2.0.0",
"storybook": "^7.6.17",
"storybook-react-router": "^1.0.8",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vite-plugin-html": "^3.2.2",
"vitest": "^1.2.2",
"yarn": "^1.22.21"
},
"resolutions": {
"minimist": "^1.2.8",
"qs": "^6.11.2",
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
},
"volta": {
"node": "22.20.0",
"yarn": "1.22.18"
}
}