-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.92 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
{
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"test": "vitest --run",
"test:coverage": "vitest --run --project=unit --coverage",
"test:unit": "vitest --run --project=unit",
"test:storybook": "vitest --run --project=storybook",
"lint": "npx eslint packages/**/src/ --fix --config eslint.config.js",
"lint:ci": "npx eslint packages/**/src/ --config eslint.config.js",
"format": "npx prettier packages/**/src --write",
"format:ci": "npx prettier packages/**/src --check",
"build:storybook": "storybook build",
"build:comet-uswds": "cd packages/comet-uswds && rollup -c",
"build:comet-data-viz": "cd packages/comet-data-viz && rollup -c",
"build:comet-extras": "cd packages/comet-extras && rollup -c",
"build:comet-mcp": "cd packages/comet-mcp && npx tsc",
"publish:comet-uswds": "cd packages/comet-uswds && npm publish --access public",
"publish:comet-data-viz": "cd packages/comet-data-viz && npm publish --access public",
"publish:comet-extras": "cd packages/comet-extras && npm publish --access public",
"publish:comet-mcp": "cd packages/comet-mcp && npm publish --access public",
"publish:ui-kit": "npx figma connect publish",
"unpublish:ui-kit": "npx figma connect unpublish"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@figma/code-connect": "1.4.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "11.1.6",
"@storybook/addon-a11y": "10.3.5",
"@storybook/addon-docs": "10.3.5",
"@storybook/addon-links": "10.3.5",
"@storybook/addon-vitest": "10.3.5",
"@storybook/react-vite": "10.3.5",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "20.19.9",
"@types/react": "19.2.7",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "10.3.5",
"playwright": "^1.59.0",
"postcss": "^8.5.8",
"prettier": "3.8.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"rollup": "4.60.1",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "10.3.5",
"typescript": "6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.7",
"vitest": "^4.0.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
},
"overrides": {
"storybook": "$storybook"
}
}