This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
93 lines (93 loc) · 3.18 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
{
"name": "monday-ui-style",
"version": "0.1.210",
"description": "Monday UI CSS Foundations",
"main": "dist/index.css",
"scripts": {
"auto:bump-patch": "node scripts/autobump_patch.js",
"auto:bump-minor": "node scripts/autobump_minor.js",
"auto:bump-major": "node scripts/autobump_major.js",
"test": "npm run build && npm run test:without-build",
"test:without-build": "jest",
"validate-icons": "node scripts/validate-meta.js && node scripts/icons/validate-icons-colors.js",
"generate-meta": "node scripts/generate-meta.js",
"compile-styles": "sass --style=expanded ./src/index.scss dist/index.css",
"copy-public-mixins": "scripts/copy-public-folder.sh mixins",
"copy-public-functions": "scripts/copy-public-folder.sh functions",
"copy-files": "cp -r src/files/ dist/",
"css-minify": "cleancss --level 1 --format breaksWith=lf --output dist/index.min.css dist/index.css",
"build": "npm run compile-styles && npm run css-minify && npm run copy-files && npm run copy-public-mixins && npm run copy-public-functions",
"plop": "plop",
"changelog": "./scripts/changelog.js",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"fix-lint": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx,ts,tsx,scss}\"",
"pre-release": "./scripts/prerelease.js",
"storybook": "storybook dev -p 7006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">=16.9.0",
"stylelint": "^14.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/monday-ui-style.git"
},
"keywords": [
"CSS",
"THEMES"
],
"author": "monday.com",
"license": "MIT",
"files": [
"src/",
"dist/",
"stylelint-config/"
],
"bugs": {
"url": "https://github.com/mondaycom/monday-ui-style/issues"
},
"homepage": "https://github.com/mondaycom/monday-ui-style#readme",
"dependencies": {
"postcss": "8.4.31",
"postcss-scss": "^4.0.9",
"postcss-value-parser": "4.2.0",
"stylelint": "^14.16.1",
"typescript-plugin-css-modules": "^5.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-essentials": "^7.5.0",
"@storybook/addon-interactions": "^7.5.0",
"@storybook/addon-links": "^7.5.0",
"@storybook/addon-themes": "^7.5.0",
"@storybook/blocks": "^7.5.0",
"@storybook/manager-api": "^7.5.0",
"@storybook/react": "^7.5.0",
"@storybook/react-webpack5": "^7.5.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.0",
"@storybook/preset-scss": "^1.0.3",
"@types/jest": "^27.4.1",
"changelog": "^1.4.2",
"chromatic": "^6.20.0",
"classnames": "^2.3.2",
"clean-css-cli": "^4.3.0",
"execa": "^5.1.1",
"jest": "^27.5.1",
"node-plop": "^0.26.2",
"plop": "^2.7.4",
"prettier": "^2.0.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.63.6",
"storybook": "^7.5.0",
"stylelint-config-recommended-scss": "^6.0.0",
"vibe-storybook-components": "^0.9.4"
}
}