-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.68 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
{
"name": "charcuterie",
"version": "1.0.0",
"description": "Every logic component for all component libraries.",
"author": "Kevin Ghadyani",
"packageManager": "[email protected]",
"main": "dist/cjs",
"scripts": {
"ci:buildAll": "npm-run-all --sequential ci:test ci:buildPackage",
"ci:buildPackage": "rollup --config",
"ci:buildStorybook": "storybook build",
"ci:testStorybook": "delay 10 && test-storybook --watch",
"ci:test": "npm-run-all --race --parallel dev:storybook ci:testStorybook",
"dev": "dev:storybook",
"dev:lint": "eslint src/**/* --fix",
"dev:storybook": "storybook dev --port 6006 --ci",
"dev:testStorybook": "delay 10 && test-storybook --watch",
"dev:test": "npm-run-all --parallel dev:storybook dev:testStorybook",
"start": "yarn && yarn dev:storybook"
},
"browser": "dist/charcuterie.umd.min.js",
"umd:main": "dist/charcuterie.umd.js",
"module": "dist/esm",
"types": "src/index.d.ts",
"source": "src",
"sideEffects": [
"*.expect.js",
"*.expect.ts"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16",
"typescript": ">=4"
},
"resolutions": {
"jest": "^27.5.1",
"jest-runner": "^27.5.1",
"jest-environment-node": "27.5.1"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.12.0",
"jotai": "^2.0.4",
"vite": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@ghadyani-eslint/eslint-config-node": "^2.2.10",
"@ghadyani-eslint/eslint-config-react": "^2.2.10",
"@ghadyani-eslint/eslint-plugin-arrow-body-parens": "^2.2.9",
"@ghadyani-eslint/eslint-plugin-eslint-overrides": "^2.2.10",
"@ghadyani-eslint/eslint-plugin-rules": "^2.2.9",
"@oneform/react": "^3.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@storybook/addon-actions": "^7.0.3",
"@storybook/addon-essentials": "^7.0.3",
"@storybook/addon-interactions": "^7.0.3",
"@storybook/addon-links": "^7.0.3",
"@storybook/addon-mdx-gfm": "7.0.3",
"@storybook/jest": "^0.1.0",
"@storybook/node-logger": "^7.0.3",
"@storybook/react": "^7.0.3",
"@storybook/react-vite": "7.0.3",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "^0.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.34",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@yarnpkg/sdks": "^3.0.0-rc.42",
"delay-cli": "^2.0.0",
"eslint": "^8.38.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.20.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"storybook": "7.0.3",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Sawtaytoes/charcuterie.git"
}
}