forked from breck7/ScrollHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "scrollhub",
"version": "0.24.0",
"description": "ScrollHub turns any server into a place where people can instantly launch unlimited new (ephemeral) website powered by Scroll.",
"main": "server.js",
"author": "Breck Yunits",
"dependencies": {
"acme-client": "^5.4.0",
"ansi-to-html": "^0.7.2",
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"git-http-backend": "^1.1.2",
"ky": "^1.4.0",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"rss-parser": "^3.13.0",
"scroll-cli": "^146.3.0",
"scrollsdk": "^93.0.0"
},
"bin": {
"hub": "./cli.js"
},
"scripts": {
"beta": "npm install ~/scroll",
"build": "scroll build",
"test": " scroll test; node ScrollHub.test.js",
"local": "scroll build; node server.js",
"ssh": "ssh [email protected]",
"up": "npm install scroll-cli@latest; cp ~/tryscroll/dist/constants.js ide/parsers.js; cp ~/tryscroll/dist/libs.js ide/libs.js",
"deploy": "git push github; git push gitlab; ssh [email protected] 'cd ScrollHub && npm run upgrade'",
"upgrade": "git pull && npm install . && npm install -g scroll-cli prettier && pm2 restart server && npm run build"
},
"prettier": {
"parser": "babel",
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 240,
"trailingComma": "none",
"arrowParens": "avoid",
"quoteProps": "as-needed"
},
"devDependencies": {
"tap": "^18.7.2"
}
}