-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1010 Bytes
/
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
{
"name": "glaskogenkartan",
"type": "module",
"version": "0.0.1",
"description": "En digital karta över Glaskogen",
"engines": {
"node": "^18"
},
"scripts": {
"dev": "http-server . -p 1337 -P",
"esbuild": "esbuild --minify --outdir=dist --platform=browser --format=esm src/*.js src/components/*.js src/components/*.css",
"build": "rimraf dist && npm run esbuild && workbox generateSW workbox-config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enjikaka/glaskogenkartan.git"
},
"keywords": [
"glaskogen",
"karta"
],
"author": "Jeremy Karlsson <jeremy@barlingshult.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/enjikaka/glaskogenkartan/issues"
},
"homepage": "https://github.com/enjikaka/glaskogenkartan#readme",
"devDependencies": {
"esbuild": "^0.17.10",
"http-server": "^0.12.1",
"rimraf": "^4.1.2",
"workbox-cli": "^5.1.2"
},
"dependencies": {
"webact": "^0.2.23"
}
}