-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepack": "yarn build && yarn lint && yarn tsc && yarn test",
"test": "BABEL_ENV=tests jest",
"lint": "eslint .",
"clean": "lerna exec --parallel -- yarn clean",
"build": "lerna exec -- yarn build",
"dev": "storybook dev",
"serve": "yarn dev",
"storybook-build": "storybook build",
"p:core": "yarn workspace @junipero/core",
"p:react": "yarn workspace @junipero/react",
"p:theme": "yarn workspace @junipero/theme"
},
"devDependencies": {
"@poool/eslint-config": "4.0.5",
"@poool/eslint-config-react": "4.0.5",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-swc": "0.4.0",
"@rollup/plugin-terser": "0.4.4",
"@storybook/addon-actions": "8.5.6",
"@storybook/addon-storysource": "8.5.6",
"@storybook/addon-styling-webpack": "1.0.1",
"@storybook/addon-themes": "8.5.6",
"@storybook/addon-webpack5-compiler-swc": "2.1.0",
"@storybook/react": "8.5.6",
"@storybook/react-webpack5": "8.5.6",
"@storybook/test": "8.5.6",
"@swc/core": "1.10.17",
"@swc/jest": "0.2.37",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/d3": "7.4.3",
"@types/jest": "29.5.14",
"@types/node": "22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/parser": "8.24.1",
"autoprefixer": "10.4.20",
"css-loader": "7.1.2",
"d3": "7.9.0",
"eslint": "9.20.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.4",
"fs-extra": "11.3.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom-testing-mocks": "1.13.1",
"lerna": "8.1.9",
"postcss": "8.5.2",
"postcss-loader": "8.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"rollup": "4.34.8",
"sass": "1.85.0",
"sass-loader": "16.0.5",
"storybook": "8.5.6",
"style-loader": "4.0.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1"
},
"packageManager": "[email protected]"
}