@20minutes/hela 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/css/articlePage-desktop.css +1 -0
- package/dist/css/articlePage-mobile.css +1 -0
- package/dist/css/global.css +1 -0
- package/dist/index.d.ts +423 -0
- package/dist/index.es.js +26498 -0
- package/dist/index.umd.js +84 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@20minutes/hela",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "./dist/index.umd.js",
|
|
6
|
+
"module": "./dist/index.es.js",
|
|
7
|
+
"source": "src/index.ts",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.es.js",
|
|
12
|
+
"require": "./dist/index.umd.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"prepare": "husky install && yarn generate:svg-sprite",
|
|
20
|
+
"generate:svg-sprite": "svg-sprite --symbol-dest sprite --symbol-sprite sprite.svg --symbol --dest=src/assets src/assets/svg/*.svg && svgr --ignore-existing --no-svgo --typescript -- src/assets/sprite/sprite.svg > src/components/atoms/Icon/SvgSprite.tsx",
|
|
21
|
+
"build:library": "gulp",
|
|
22
|
+
"storybook": "start-storybook -p 6006",
|
|
23
|
+
"build:storybook": "build-storybook",
|
|
24
|
+
"lint:scss": "stylelint 'src/**/*.scss'",
|
|
25
|
+
"lint:ts": "eslint src"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@20minutes/eslint-config": "^1.2.3",
|
|
29
|
+
"@babel/core": "^7.18.10",
|
|
30
|
+
"@babel/eslint-parser": "^7.18.9",
|
|
31
|
+
"@babel/plugin-transform-typescript": "^7.18.0",
|
|
32
|
+
"@storybook/addon-essentials": "^6.5.10",
|
|
33
|
+
"@storybook/addon-info": "^5.3.21",
|
|
34
|
+
"@storybook/addon-links": "^6.5.10",
|
|
35
|
+
"@storybook/addon-options": "^5.3.21",
|
|
36
|
+
"@storybook/addons": "^6.4.22",
|
|
37
|
+
"@storybook/builder-vite": "^0.1.39",
|
|
38
|
+
"@storybook/react": "^6.5.10",
|
|
39
|
+
"@svgr/cli": "^6.3.1",
|
|
40
|
+
"@types/draft-convert": "^2.1.4",
|
|
41
|
+
"@types/draft-js": "^0.11.9",
|
|
42
|
+
"@types/gulp": "^4.0.9",
|
|
43
|
+
"@types/gulp-sass": "^5.0.0",
|
|
44
|
+
"@types/node": "^18.6.5",
|
|
45
|
+
"@types/react": "^18.0.17",
|
|
46
|
+
"@types/react-dom": "^18.0.6",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
48
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
49
|
+
"@vitejs/plugin-react": "^1.3.2",
|
|
50
|
+
"babel-loader": "^8.2.5",
|
|
51
|
+
"babel-preset-env": "^1.7.0",
|
|
52
|
+
"babel-preset-react": "^6.24.1",
|
|
53
|
+
"eslint": "^8.21.0",
|
|
54
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
55
|
+
"eslint-config-prettier": "^8.5.0",
|
|
56
|
+
"eslint-import-resolver-typescript": "^3.4.0",
|
|
57
|
+
"eslint-plugin-babel": "^5.3.1",
|
|
58
|
+
"eslint-plugin-import": "^2.25.3",
|
|
59
|
+
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
60
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
61
|
+
"eslint-plugin-react": "^7.30.1",
|
|
62
|
+
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
63
|
+
"glob": "^8.0.3",
|
|
64
|
+
"gulp": "^4.0.2",
|
|
65
|
+
"gulp-purgecss": "^4.1.3",
|
|
66
|
+
"gulp-sass": "^5.1.0",
|
|
67
|
+
"gulp-sassvg": "^5.0.0",
|
|
68
|
+
"gulp-shell": "^0.8.0",
|
|
69
|
+
"gulp-svgmin": "^4.1.0",
|
|
70
|
+
"husky": "^8.0.1",
|
|
71
|
+
"merge-stream": "^2.0.0",
|
|
72
|
+
"postcss": "^8.4.16",
|
|
73
|
+
"prettier": "^2.7.1",
|
|
74
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
75
|
+
"rollup-plugin-scss": "^3.0.0",
|
|
76
|
+
"sass": "^1.53.0",
|
|
77
|
+
"size-limit": "^8.0.0",
|
|
78
|
+
"stylelint": "^14.9.1",
|
|
79
|
+
"stylelint-config-standard-scss": "^5.0.0",
|
|
80
|
+
"svg-sprite": "next",
|
|
81
|
+
"typescript": "^4.7.4",
|
|
82
|
+
"vite": "^2.9.13"
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=16"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"classnames": "^2.3.1",
|
|
89
|
+
"draft-convert": "^2.1.12",
|
|
90
|
+
"draft-js": "^0.11.7",
|
|
91
|
+
"normalize.css": "^8.0.1",
|
|
92
|
+
"react": "^18.2.0",
|
|
93
|
+
"react-dom": "^18.2.0"
|
|
94
|
+
}
|
|
95
|
+
}
|