-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.03 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
{
"name": "@woosmap/js-samples",
"description": "Samples for Woosmap Map JS API",
"version": "1.46.0",
"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.0",
"@11ty/eleventy-img": "^6.0.4",
"@playwright/test": "^1.57.0",
"@types/geojson": "^7946.0.16",
"@types/supercluster": "^7.1.3",
"@types/woosmap.map": "^1.4.24",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.15.0",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"dts-minify": "^0.3.3",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.11.0",
"http-server": "^14.1.1",
"jimp": "^1.6.0",
"lodash": "^4.17.21",
"mime": "^4.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"typescript": "^5.3.3",
"vite": "^6.4.1",
"yaml": "^2.3.4"
},
"dependencies": {
"react": "^19.2.3",
"react-dom": "^19.2.3",
"supercluster": "^8.0.1"
}
}