forked from ingress-shards/ingress-shards.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.25 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
{
"name": "ingress-shards-map",
"version": "0.0.0-semantically-released",
"description": "Interactive map of shard data from Ingress events",
"author": {
"name": "Nick Young"
},
"contributors": [
"Lewis Keen"
],
"license": "MIT",
"homepage": "https://ingress-shards.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/ingress-shards/ingress-shards.github.io.git"
},
"bugs": {
"url": "https://github.com/ingress-shards/ingress-shards.github.io/issues"
},
"type": "module",
"private": true,
"main": "dist/main.bundle.js",
"scripts": {
"clean": "node -e \"const fs = require('fs'); ['gen', 'dist'].forEach(p => fs.rmSync(p, { recursive: true, force: true }))\"",
"start": "npm run prepare:data && webpack serve --config webpack.dev.js",
"build": "npm run prepare:data && webpack --config webpack.prod.js",
"ci-geocode": "python scripts/geocode.py",
"ci-data-processor": "node scripts/pre-processor-loader.js",
"mkdir:gen": "node -e \"if (!require('fs').existsSync('gen')) require('fs').mkdirSync('gen', { recursive: true })\"",
"prepare:data": "npm run mkdir:gen && npm run ci-geocode && npm run ci-data-processor",
"validate": "npm run clean && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@semantic-release/exec": "^7.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"css-loader": "^7.1.2",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"html-webpack-plugin": "^5.6.4",
"semantic-release": "^25.0.2",
"semantic-release-export-data": "^1.2.0",
"style-loader": "^4.0.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"copy-webpack-plugin": "^13.0.1",
"flag-icon-css": "^4.1.7",
"github-fork-ribbon-css": "^0.2.3",
"leaflet": "^1.9.4",
"leaflet-providers": "^2.0.0",
"leaflet-relief": "^1.4.0",
"leaflet.motion": "github:neon-ninja/leaflet.motion",
"luxon": "^3.7.2"
}
}