This repository was archived by the owner on Apr 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3 KB
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
{
"name": "@genexus/gemini",
"version": "2.0.1",
"description": "Gemini design system",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/gemini/gemini.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve --docs",
"test": "stencil test --e2e",
"test.watch": "stencil test --e2e --watchAll",
"generate": "stencil generate",
"storybook": "start-storybook -p 9001 -c .storybook -s www",
"story": "npm-run-all --parallel start storybook",
"svgo": "svgo --folder=./src/components/icon/assets --enable removeDimensions",
"validate": "npm run test && npm run build",
"validate.ci": "npm run test && npm run build -- --max-workers 1 --debug",
"build-storybook": "build-storybook -c .storybook",
"clean-icons": "node remove-icons-title.js"
},
"license": "MIT",
"dependencies": {
"@simonwep/pickr": "^1.7.4",
"@stencil/store": "^1.4.1",
"@storybook/addon-a11y": "^6.1.21",
"@storybook/addon-knobs": "^6.1.21",
"@storybook/addon-storysource": "^6.1.21",
"js-datepicker": "^5.11.0",
"split.js": "^1.6.5"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@stencil/core": "~4.11.0",
"@stencil/sass": "^1.4.0",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-viewport": "^6.1.21",
"@storybook/addons": "^6.1.21",
"@storybook/html": "^6.1.21",
"@storybook/theming": "^6.1.21",
"@types/jest": "~29.5.1",
"@types/prettier": "~2.4.0",
"@types/puppeteer": "~5.4.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"husky": "~8.0.0",
"jest": "~29.7.0",
"jest-cli": "~29.7.0",
"lint-staged": "~13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.7.0",
"puppeteer": "~15.2.0",
"storybook-addon-rtl": "^0.4.3",
"storybook-addon-themes": "^6.0.1",
"storybook-dark-mode": "^1.0.7",
"svgo": "^1.3.2",
"typescript": "~5.3.3",
"write-file-webpack-plugin": "^4.5.1",
"@genexus/chameleon-controls-library": ">=6.0.0-next.1"
},
"peerDependencies": {
"@genexus/chameleon-controls-library": ">=6.0.0-next.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,jsx,js,css,json,md}": [
"prettier --write",
"git add"
],
"src/components/icon/assets/*.svg": [
"svgo --enable removeDimensions",
"git add"
],
"*.{tsx,ts,jsx,js}": [
"eslint --fix",
"git add"
]
}
}