-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "notabug-workspace",
"description": "Federated fork of classic reddit UI based on gunDB",
"repository": "https://github.com/notabugio/notabug",
"author": "go1dfish",
"license": "MIT",
"keywords": [
"forum",
"federated",
"chat",
"reddit",
"social"
],
"scripts": {
"postinstall": "node postinstall.js",
"setup": "yarn && yarn buildall",
"buildall": "lerna run build",
"buildchanges": "lerna run build --since",
"server": "yarn workspace @notabug/nab-server start",
"start": "yarn workspace @notabug/nab-server pm2:start && yarn workspace @notabug/indexer pm2:start",
"start-indexer": "yarn workspace @notabug/indexer pm2:start",
"saidit-ingest": "yarn workspace @notabug/saidit-ingest pm2:start",
"saidit-logs": "yarn workspace @notabug/saidit-ingest pm2:logs",
"stop": "yarn workspace @notabug/nab-server pm2:stop",
"logs": "pm2 logs",
"status": "yarn workspace @notabug/nab-server pm2:ls",
"reload": "yarn workspace @notabug/nab-server pm2:reload",
"reload-indexer": "yarn workspace @notabug/indexer pm2:reload",
"pm2:update": "pm2 update",
"gitupgrade": "git pull origin master && yarn hotrebuild",
"gitstashupgrade": "git stash && git pull origin master && git stash pop && yarn hotrebuild",
"monit": "pm2 monit",
"hotrebuild": "yarn setup && yarn reload",
"devrebuild": "yarn buildchanges && yarn reload",
"uidev": "yarn workspace notabug start",
"lernapublish": "lerna publish"
},
"private": true,
"workspaces": [
"packages/*",
"chaingun/packages/*",
"lingua-webca/packages/*"
],
"devDependencies": {
"@types/socketcluster": "^14.0.2",
"@types/socketcluster-server": "^14.2.4",
"lerna": "^3.20.2"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"dependencies": {
"pm2": "^4.2.3"
}
}