-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.64 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
{
"name": "@geops/mobility-web-component",
"license": "UNLICENSED",
"description": "Web components in the domains of mobility and logistics.",
"version": "0.1.12",
"homepage": "https://mobility-web-component.geops.io/",
"type": "module",
"main": "dist/index.js",
"dependencies": {
"jspdf": "^4.2.0",
"lodash.debounce": "^4.0.8",
"maplibre-gl": "5.24.0",
"mobility-toolbox-js": "3.6.13",
"ol": "^10.9.0",
"preact": "^10.29.2",
"preact-custom-element": "^4.6.0",
"react": "npm:@preact/compat@^18.3.1",
"react-dom": "npm:@preact/compat@^18.3.1",
"react-icons": "^5.6.0",
"react-spatial": "^3.0.0",
"rosetta": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@geops/eslint-config-react": "^1.6.0",
"@tailwindcss/cli": "^4.3.0",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/preact": "^3.2.4",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/mocha": "^10.0.10",
"@types/preact-custom-element": "^4.0.4",
"@viz-kit/esbuild-analyzer": "^1.0.0",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"esbuild-sass-plugin": "^3.6.0",
"eslint": "^9",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"fixpack": "^4.0.0",
"generact": "^0.4.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.4.1",
"jest-preset-preact": "^4.1.1",
"next": "16.2.6",
"preact-render-to-string": "^6.7.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"standard-version": "^9.5.0",
"svgo": "^4.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"scripts": {
"analyze": "esbuild-analyzer . --port 8888",
"build": "rm -rf dist/* && yarn build:css && yarn build:js && rm -rf doc/public/*.js* && cp dist/* doc/public/",
"build:css": "yarn tailwind:component && yarn tailwind:website",
"build:js": "node scripts/build.mjs",
"cp": "generact --root src",
"dev": "node scripts/dev.mjs",
"doc": "yarn build && cd doc && yarn build",
"doc:dev": "yarn build && cd doc && yarn dev",
"format": "prettier --write 'src/**/*.(tsx|ts)' && eslint 'src/**/*.tsx' 'src/**/*.ts' --fix",
"lint": "eslint 'src/**/*.tsx' 'src/**/*.ts'",
"prepare": "husky",
"publish:beta": "npm whoami >/dev/null 2>&1 && HUSKY=0 yarn release -- --prerelease beta --skip.changelog && yarn run build && HUSKY=0 yarn publish --access public --tag beta && git push origin HEAD && git push --tags ",
"publish:beta:dryrun": "yarn release -- --prerelease beta --dry-run --skip.changelog",
"publish:public": "npm whoami >/dev/null 2>&1 && yarn release && yarn run build && HUSKY=0 yarn publish --access public && git push origin HEAD && git push --tags ",
"publish:public:dryrun": "yarn release --dry-run",
"release": "standard-version",
"start": "concurrently \"yarn tailwind:component --watch\" \"yarn tailwind:website --watch\" \"yarn dev\"",
"tailwind:component": "npx @tailwindcss/cli --input=./input.css --output=src/style.css --content=src/**/*.tsx",
"tailwind:website": "npx @tailwindcss/cli --input=./input.css --output=output.css --content=*.html --minify",
"test": "TZ=UTC jest",
"up": "yarn upgrade-interactive --latest",
"upstream": "git fetch upstream && git merge upstream/main"
},
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}