-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.59 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.59 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
{
"name": "moonlet-cloud",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"scrape:website": "rm -rf hosting/moonlet.xyz && node scripts/scrape-website.js",
"serve:website": "http-server website/moonlet.xyz -p 443 --ssl --cert utils/cert.pem --key utils/key.pem",
"build:ledger-bridge": "cd src/ledger-bridge && npm i && npm run build",
"build:static": "mkdir -p hosting/static.moonlet.xyz && touch hosting/static.moonlet.xyz/index.html && npm run build:ledger-bridge && cp -r src/email hosting/static.moonlet.xyz/",
"deploy:website": "npm run scrape:website && firebase deploy --only hosting:website",
"deploy:static": "npm run build:static && firebase deploy --only hosting:static && firebase deploy --only hosting:legacy",
"deploy:api": "mkdir -p hosting/api.moonlet.xyz && touch hosting/api.moonlet.xyz/index.html && firebase deploy --only functions && firebase deploy --only hosting:api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptolandtech/moonlet-cloud.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cryptolandtech/moonlet-cloud/issues"
},
"homepage": "https://github.com/cryptolandtech/moonlet-cloud#readme",
"devDependencies": {
"evil-dns": "^0.2.0",
"firebase-tools": "^6.9.2",
"website-scraper": "^4.0.0"
},
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^4.68.4",
"agentkeepalive": "^4.0.2",
"cheerio": "^1.0.0-rc.3",
"firebase-functions": "^3.0.1",
"http-server": "^0.11.1",
"request": "^2.88.0",
"shelljs": "^0.8.3"
}
}