forked from sandwichfarm/nostr-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "nostr-watch",
"version": "0.2.12",
"private": true,
"scripts": {
"build": "vue-cli-service build",
"build:quick": "vue-cli-service build",
"prebuild": "yarn get:geo && yarn prebuild:move",
"prebuild:move": "yarn yaml-convert relays.yaml -o public/relays.json",
"get:geo": "node ./scripts/geo.js",
"serve": "vue-cli-service serve --host localhost",
"lint": "vue-cli-service lint",
"docker": "yarn docker:build && yarn docker:tag && yarn docker:push",
"docker:up": "docker-compose up",
"docker:build": "docker build . -t nostr-relay-status --progress=plain",
"docker:build:quick": "docker build . -t nostr-relay-status --progress=plain -f Dockerfile.dev",
"docker:tag": "docker tag nostr-relay-status:latest registry.digitalocean.com/sandwich-farm/nostr-relay-status",
"docker:push": "docker push registry.digitalocean.com/sandwich-farm/nostr-relay-status"
},
"dependencies": {
"@2alheure/vue-safe-mail": "1.0.3",
"@headlessui/vue": "1.7.7",
"@heroicons/vue": "2.0.13",
"@popperjs/core": "2.11.6",
"@vue-leaflet/vue-leaflet": "0.6.1",
"@vueuse/core": "9.10.0",
"@vueuse/head": "1.0.23",
"array-timsort": "1.0.3",
"country-code-emoji": "2.3.0",
"cross-fetch": "3.1.5",
"dohjs": "0.3.3",
"dotenv": "16.0.3",
"fast-safe-stringify": "2.1.1",
"geolib": "3.3.3",
"js-yaml": "4.1.0",
"leaflet": "1.9.3",
"mount-vue-component": "0.10.2",
"node-emoji": "1.11.0",
"node-fetch": "3.3.0",
"nostr": "0.2.5",
"nostr-tools": "1.1.1",
"nostrwatch-js": "0.0.43",
"object-hash": "3.0.0",
"object-sizeof": "1.6.3",
"onion-regex": "2.0.8",
"pinia": "2.0.28",
"pinia-plugin-persistedstate-2": "2.0.8",
"pinia-shared-state": "0.2.10",
"postcss-apply": "0.12.0",
"postcss-import": "15.1.0",
"requests": "0.3.0",
"stream-browserify": "3.0.0",
"swearfilter": "2.0.4",
"unescape-json": "1.0.3",
"url-status-code": "2.0.0",
"vue": "^3.2.45",
"vue-country-flag-next": "2.3.2",
"vue-gauge": "1.0.3",
"vue-grid-responsive": "1.3.0",
"vue-meta": "3.0.0-alpha.8",
"vue-router": "4.1.6",
"vue-tailwind": "2.5.1",
"vue-use": "0.2.0",
"vue3-storage": "0.1.11",
"webpack": "5.76.0",
"write-yaml-file": "4.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-syntax-top-level-await": "7.14.5",
"@fullhuman/postcss-purgecss": "5.0.0",
"@tailwindcss/forms": "0.5.3",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/composition-api": "1.7.1",
"autoprefixer": "10.4.13",
"compression-webpack-plugin": "10.0.0",
"css-minimizer-webpack-plugin": "4.2.2",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"html-webpack-plugin": "5.5.0",
"json-loader": "^0.5.7",
"json-server": "0.17.1",
"mini-css-extract-plugin": "2.7.2",
"node-polyfill-webpack-plugin": "2.0.1",
"node-sass": "8.0.0",
"postcss": "8.4.20",
"postcss-loader": "7.0.2",
"postcss-preset-env": "7.8.3",
"sass": "1.56.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"tailwindcss": "3.2.4",
"vue-cli-plugin-yaml-loader": "~1.0.0",
"vue-template-compiler": "2.7.14",
"webpack-cli": "5.0.0",
"yaml-convert": "1.0.1",
"yaml-loader": "^0.6.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}