-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3.67 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
{
"name": "@genexus/web-controls-library",
"version": "3.0.0",
"description": "GeneXus Web Controls Library",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"unpkg": "dist/gx-web-controls/gx-web-controls.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build:dev": "stencil build --dev && npm run scss-bundle",
"postbuild": "npm run scss-bundle && npm run pretty-quick",
"docs": "stencil build --dev --docs",
"lint": "eslint src/**/*{.ts,.tsx} --fix --rule \"{no-console: [\"error\", { allow: [\"warn\", \"error\"] }]}\"",
"pretty-quick": "pretty-quick",
"scss-bundle": "scss-bundle -e ./src/components/_components-theming-mixins.scss -o dist/theming/theming-mixins.scss",
"scss-bundle.watch": "scss-bundle -w ./src/components -e ./src/components/_components-theming-mixins.scss -o dist/theming/theming-mixins.scss",
"start": "stencil build --dev --watch --serve",
"start.es5": "stencil build --dev --watch --serve --es5",
"test": "stencil test --spec --e2e --max-workers=16",
"test.ci": "stencil test --spec",
"test.screenshot": "npm run test:before && stencil test --spec --e2e --screenshot && npm run test:after",
"test.watch": "stencil test --spec --e2e --watchAll --screenshot",
"test:before": "node tests/updateScreenshots.mjs before",
"test:after": "node tests/updateScreenshots.mjs after",
"validate": "npm run lint && npm run test && npm run build && npm run scss-bundle",
"validate.ci": "npm run lint && npm run test.ci && npm run build --max-workers 1 --debug && npm run scss-bundle"
},
"dependencies": {
"@types/resize-observer-browser": "^0.1.7",
"custom-pinch-zoom-element": "^1.2.8",
"leaflet": "^1.3.4",
"leaflet-draw": "^1.0.4",
"leaflet.markercluster": "^1.5.3",
"lottie-web": "^5.2.1",
"swiper": "^8.4.7"
},
"devDependencies": {
"@genexus/web-standard-functions": ">= 0.66.1",
"@stencil-community/eslint-plugin": "^0.5.0",
"@stencil/core": "2.17.0",
"@stencil/react-output-target": "0.0.9",
"@stencil/sass": "^1.3.2",
"@types/jest": "^27.5.2",
"@types/leaflet": "^1.7.11",
"@types/puppeteer": "1.19.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.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": "^3.1.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"lint-staged": "^9.5.0",
"pixelmatch": "4.0.2",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"puppeteer": "^14.3.0",
"scss-bundle": "^3.1.1",
"typescript": "^4.9.0"
},
"peerDependencies": {
"@genexus/web-standard-functions": ">= 0.66.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,jsx,js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{tsx,ts,jsx,js}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/genexuslabs/web-controls-library.git"
},
"author": "GeneXus",
"license": "MIT",
"bugs": {
"url": "https://github.com/genexuslabs/web-controls-library"
},
"homepage": "https://github.com/genexuslabs/web-controls-library",
"jest": {
"preset": "@stencil/core/testing"
}
}