forked from chmac/nostr-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "nostr-map",
"version": "0.1.1",
"description": "NOSTR notes on maps",
"source": "src/index.html",
"repository": "git@github.com:trustroots/nostr-map.git",
"author": "Simon & Callum",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "parcel --no-cache src/index.html",
"build": "yarn build:parcel && yarn build:copy-public",
"build:parcel": "parcel build --no-scope-hoist",
"build:copy-public": "cp public/* dist/",
"prettier": "prettier --write src/",
"deploy:build": "parcel build --public-url /nostr-map",
"deploy:publish": "gh-pages -d dist",
"deploy": "yarn deploy:build && yarn deploy:publish"
},
"devDependencies": {
"@parcel/transformer-sass": "2.8.3",
"@types/dompurify": "^3.0.5",
"@types/leaflet": "^1.9.0",
"gh-pages": "^5.0.0",
"parcel": "^2.12.0",
"prettier": "2.8.3"
},
"dependencies": {
"@henrygd/queue": "npm:@jsr/henrygd__queue@^1.0.6",
"@nostrify/nostrify": "npm:@jsr/nostrify__nostrify@^0.30.0",
"dompurify": "^3.1.4",
"leaflet": "^1.9.3",
"leaflet.sidepanel": "https://github.com/maxwell-ilai/Leaflet.SidePanel",
"nostr-tools": "^1.2.1",
"pluscodes": "^2.6.0",
"process": "^0.11.10",
"sweetalert2": "^11.11.0"
},
"packageManager": "yarn@4.4.0",
"@parcel/resolver-default": {
"packageExports": true
},
"alias": {
"process": "process/browser.js",
"buffer": "buffer"
}
}