-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.1 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
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
{
"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": "eslint {packages,entrypoints,web-components,viz-service}/*/src -c .eslintrc.js --ext js,jsx,ts,tsx --fix && yarn eslint {packages,entrypoints,web-components,viz-service}/*/spec -c .eslintrc.js --ext js,jsx,ts,tsx --fix",
"format": "run prettier -w {packages,entrypoints,web-components,viz-service}/*/src/**/*.{ts,js,tsx} && yarn run prettier -w {packages,entrypoints,web-components,viz-service}/*/spec/*.{ts,tsx}",
"test": "nx run-many --target=test",
"clean": "rm -r {packages,entrypoints,web-components,viz-service}/*/{dist,build}",
"cover": "nx run-many --target=cover",
"start": "nx run-many --target=start",
"build": "nx run-many --target=build",
"tdd": "nx run-many --target=tdd --output-style=stream",
"typecheck": "nx run-many --target=typecheck",
"affected": "nx print-affected --select=projects",
"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": {
"@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/react": "^12.0.0",
"@uiw/react-codemirror": "^4.23.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^1.3.1",
"husky": "^8.0.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"
},
"volta": {
"node": "20.11.0",
"yarn": "1.22.18"
}
}