-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"build-storybook": "storybook build",
"prepare": "husky install",
"ci:version": "zx scripts/publish.mjs version ",
"ci:publish": "zx scripts/publish.mjs publish",
"clean": "rm -rf dist ",
"watchtype": "tsc --project . --watch --noEmit",
"reset": "pnpm clean && rm -rf node_modules && pnpm install",
"storybook": "storybook dev -p 7000",
"test:pw:ct": "playwright test -c playwright-ct.config.ts",
"test:pw:e2e": "playwright test -c playwright.config.ts",
"release": "tsx ./scripts/cli.ts release",
"test:jest": "jest --changedSince=main"
},
"engines": {
"node": ">=16",
"pnpm": ">=3"
},
"resolutions": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@colliejs/cli": "^1.2.4",
"@colliejs/config": "^1.2.0",
"@colliejs/core": "^1.2.0",
"@colliejs/rollup": "^1.1.1",
"@colliejs/shared": "^1.2.0",
"@colliejs/transform": "^1.2.3",
"@colliejs/vite": "^1.0.94",
"csstype": "^3.1.3",
"dayjs": "^1.11.10",
"lodash": "^4.17.21",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@colliejs/react": "^1.2.4",
"@jest/types": "^28.1.3",
"@playwright/experimental-ct-react": "^1.40.1",
"@pnpm/filter-workspace-packages": "^7.2.10",
"@pnpm/logger": "^5.0.0",
"@pnpm/sort-packages": "^5.0.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"@scriptbot/cli": "^1.0.161",
"@stitches/react": "^1.2.8",
"@storybook/addon-actions": "7.6.7",
"@storybook/addon-essentials": "7.6.7",
"@storybook/addon-interactions": "7.6.7",
"@storybook/addon-links": "7.6.7",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "7.6.7",
"@storybook/react-vite": "7.6.7",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^1.3.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"conventional-changelog": "^3.1.25",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"find-packages": "^10.0.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"js-beautify": "^1.14.11",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"organize-imports-cli": "^0.10.0",
"pkgs-graph": "^8.0.0",
"prettier": "^3.1.1",
"prop-types": "^15.8.1",
"react-test-renderer": "^18.2.0",
"semver": "^7.5.4",
"sort-pkgs": "^1.0.2",
"storybook": "7.6.7",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-inspect": "^0.8.1",
"zx": "^7.2.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --cache --fix"
]
}
}