-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prepack": "yarn build && yarn lint && yarn tsc && yarn test",
"test": "yarn vitest run",
"lint": "eslint --max-warnings=0 --cache .",
"clean": "yarn turbo clean",
"build": "yarn turbo build",
"dev": "storybook dev",
"serve": "yarn dev",
"storybook-build": "storybook build",
"p:core": "yarn workspace @junipero/core",
"p:hooks": "yarn workspace @junipero/hooks",
"p:react": "yarn workspace @junipero/react",
"p:theme": "yarn workspace @junipero/theme",
"p:transitions": "yarn workspace @junipero/transitions",
"p:tailwind": "yarn workspace @junipero/tailwind-plugin"
},
"devDependencies": {
"@poool/eslint-config": "5.0.10",
"@poool/eslint-config-react": "5.0.10",
"@storybook/addon-themes": "10.4.0",
"@storybook/react-vite": "10.4.0",
"@tailwindcss/postcss": "4.3.0",
"@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/d3": "7.4.3",
"@types/fs-extra": "11.0.4",
"@types/jest": "30.0.0",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@typescript-eslint/parser": "8.59.4",
"@vitest/coverage-v8": "4.1.7",
"autoprefixer": "10.5.0",
"css-loader": "7.1.4",
"d3": "7.9.0",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "10.4.0",
"fs-extra": "11.3.5",
"jsdom": "29.1.1",
"jsdom-testing-mocks": "1.16.0",
"lerna": "9.0.7",
"postcss": "8.5.15",
"postcss-load-config": "6.0.1",
"postcss-loader": "8.2.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"sass": "1.99.0",
"sass-loader": "17.0.0",
"storybook": "10.4.0",
"style-loader": "4.0.0",
"tailwindcss": "4.3.0",
"tsdown": "0.22.0",
"tsx": "4.22.3",
"turbo": "2.9.14",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4",
"vite": "8.0.13",
"vitest": "4.1.7"
},
"packageManager": "yarn@4.15.0"
}