-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.41 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
{
"name": "@geops/mobility-web-component",
"license": "UNLICENSED",
"description": "Web components in the domains of mobility and logistics.",
"version": "0.1.8",
"homepage": "https://mobility-web-component.geops.io/",
"type": "module",
"main": "index.js",
"dependencies": {
"maplibre-gl": "^4.7.1",
"mobility-toolbox-js": "3.1.0",
"ol": "^10.3.1",
"preact": "^10.25.4",
"preact-custom-element": "^4.3.0",
"react": "npm:@preact/compat@^18.3.1",
"react-dom": "npm:@preact/compat@^18.3.1",
"react-icons": "^5.4.0",
"rosetta": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/preact": "^3.2.4",
"@types/geojson": "^7946.0.15",
"@types/jest": "^29.5.14",
"@types/preact-custom-element": "^4.0.4",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^4.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"fixpack": "^4.0.0",
"generact": "^0.4.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-preact": "^4.1.1",
"next": "15.0.3",
"preact-render-to-string": "^6.5.12",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"scripts": {
"build": "yarn build:css && yarn build:js",
"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 && cp index.js doc/public/index.js && cd doc && yarn build",
"doc:dev": "yarn build && cp index.js doc/public/index.js && cp index.js.map doc/public/index.js.map && cd doc && yarn dev",
"format": "prettier --write 'src/**/*.(tsx|ts)' && eslint src/**/*.tsx src/**/*.ts --fix ",
"lint": "eslint src/**/*.tsx",
"prepare": "husky",
"publish:beta": "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": "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": "tailwindcss --input=./input.css --output=src/style.css --content=src/**/*.tsx",
"tailwind:website": "tailwindcss --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": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}