This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
137 lines (137 loc) ยท 4.3 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vibe-storybook-components",
"version": "0.16.1",
"description": "Collection of Vibe's Storybook components",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:mondaycom/vibe-storybook-components.git"
},
"sideEffects": [
"*.scss",
"*.css"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./index.css": "./dist/index.css",
"./mixins": "./dist/_mixins.scss",
"./types": "./dist/types/published-types.d.ts",
"./package.json": "./package.json",
"./dist/": "./dist/"
},
"typesVersions": {
"*": {
"types": [
"./dist/types/published-types.d.ts"
]
}
},
"files": [
"dist/",
"src/",
"README.md"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs && npm run copy-mixins-to-dist",
"copy-mixins-to-dist": "scripts/copy-mixins-to-dist.sh",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --fix",
"prettier:fix": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx,ts,tsx}\"",
"test": "jest --passWithNoTests",
"test:update": "npm run test -- -u",
"test:stories": "testing=storybook TEST_END_FILES=jest-story jest --passWithNoTests",
"storybook": "storybook dev -p 7012",
"build-storybook": "storybook build",
"release": "./scripts/release.mjs",
"pre-release": "./scripts/prerelease.mjs"
},
"browserslist": [
"extends browserslist-config-monday"
],
"dependencies": {
"browserslist-config-monday": "^1.0.6",
"classnames": "^2.3.2",
"@storybook/types": "^7.5.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@storybook/addon-actions": "^7.5.0",
"@storybook/addon-essentials": "^7.5.0",
"@storybook/addon-links": "^7.5.0",
"@storybook/addon-themes": "^7.5.0",
"@storybook/blocks": "^7.5.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.5.0",
"@storybook/react-webpack5": "^7.5.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"chalk": "^5.3.0",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-storybook": "^0.6.15",
"execa": "^7.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^10.2.0",
"postcss": "^8.4.27",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.26.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"sass-loader": "^13.3.2",
"storybook": "^7.5.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"changelog": {
"labels": {
"PR: Bugfix ๐": "Bug Fixes",
"PR: New Feature ๐น": "New Features",
"PR: Dependencies ๐ ": "Dependency Upgrades",
"PR: Documentation ๐": "Documentation",
"PR: Internal ๐ ": "Internal Changes",
"PR: Breaking Changes ๐ฅ": "Breaking Changes"
}
}
}