-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "@woosmap/js-samples",
"description": "Samples for Woosmap Map JS API",
"version": "1.48.2",
"keywords": [
"woosmap",
"javascript",
"map"
],
"homepage": "https://github.com/woosmap/js-samples#readme",
"bugs": {
"url": "https://github.com/woosmap/js-samples/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woosmap/js-samples.git"
},
"files": [],
"private": true,
"scripts": {
"build:eleventy": "eleventy --config=eleventy.config.mjs --incremental",
"build": "npm-run-all2 clean -p build:*",
"ci": "npm run build && npm run test",
"clean": "npx rimraf dist/*",
"clean:cache": "npx rimraf .cache/* ",
"format": "npx eslint --fix \"samples/**/*.{ts*,js*}\" \"src/**/*.{ts*,js*}\"",
"lint": "npx eslint \"samples/**/*.{ts*,js*}\" \"src/**/*.{ts*,js*}\"",
"start": "npm-run-all2 clean -p watch:*",
"serve": "http-server dist --port 8080",
"test": "npm-run-all2 -s test:*",
"test:check": "tsc --noEmit --skipLibCheck",
"test:playwright": "playwright test e2e show-report",
"test:playwright:app": "playwright test app",
"watch:eleventy": "eleventy --config=eleventy.config.mjs --serve --port 8080 --incremental"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-img": "^6.0.4",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@types/geojson": "^7946.0.16",
"@types/supercluster": "^7.1.3",
"@types/woosmap.map": "^1.4.26",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.15.0",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"dts-minify": "^0.3.3",
"eslint": "^10.4.1",
"eslint-plugin-jest": "^29.15.2",
"http-server": "^14.1.1",
"jimp": "^1.6.1",
"lodash": "^4.18.1",
"mime": "^4.1.0",
"npm-run-all2": "^9.0.1",
"prettier": "^3.8.3",
"sass": "^1.100.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"yaml": "^2.9.0"
},
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7",
"supercluster": "^8.0.1"
}
}