-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "@woosmap/js-samples",
"description": "Samples for Woosmap Map JS API",
"version": "1.40.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 --incremental",
"build": "npm-run-all 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-all clean -p watch:*",
"serve": "http-server dist --port 8080",
"test": "npm-run-all -s test:*",
"test:check": "tsc --noEmit --skipLibCheck",
"test:playwright": "playwright test e2e show-report",
"test:playwright:app": "playwright test app",
"watch:eleventy": "eleventy --serve --port 8080 --incremental"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^1.1.0",
"@playwright/test": "^1.40.1",
"@types/woosmap.map": "^1.4.17",
"@types/supercluster": "^7.1.3",
"@types/geojson": "^7946.0.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"dts-minify": "^0.3.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"http-server": "^14.1.1",
"jimp": "^0.22.10",
"mime": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vite": "^5.4.11",
"lodash": "^4.17.21",
"yaml": "^2.3.4"
},
"dependencies": {
"supercluster": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}