-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.79 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
{
"name": "abode",
"version": "0.1.0",
"description": "TypeScript node.js backend built based on indieweb principles.",
"main": "./server-build/server.js",
"types": "./server-build/server.d.ts",
"scripts": {
"start": "node ./server-build/server.js --harmony_array_includes",
"build": "tsc",
"freshbuild": "npm run build; npm start",
"startServer": "npm run build; forever --uid abode-personal --append start ./server-build/server.js",
"restartServer": "npm run build; forever restart abode-personal",
"updateServer": "git pull; npm run restartServer",
"followLogs": "tail -f ~/.forever/abode-personal.log",
"rebuildJekyll": "cd jekyll; jekyll build",
"rebuildJekyllLocal": "cd jekyll; jekyll build --config=_config.yml,_local_config.yml",
"rebuildJekyllPrivate": "cd jekyll; jekyll build --config=_config.yml,_private_config.yml"
},
"keywords": [
"indieweb"
],
"author": "Eddie Hinkle (https://eddiehinkle.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EdwardHinkle/abode-eddie.git"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.4.0",
"@turf/turf": "^5.1.6",
"@types/bcrypt": "^1.0.0",
"@types/bluebird": "^3.5.2",
"@types/body-parser": "^1.16.0",
"@types/cheerio": "^0.22.5",
"@types/cron": "^1.2.0",
"@types/es6-promise": "0.0.32",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.6",
"@types/js-yaml": "^3.5.31",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash": "^4.14.55",
"@types/mime-types": "^2.1.0",
"@types/request": "^2.0.8",
"@types/sqlite3": "^3.1.3",
"@types/to-markdown": "^3.0.0",
"base64url": "^3.0.1",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bookmark": "[email protected]:EdwardHinkle/bookmark.git",
"cheerio": "^1.0.0-rc.2",
"child_process": "^1.0.2",
"cron": "^1.2.1",
"emoji-data": "[email protected]:EdwardHinkle/emoji-data-js.git",
"emoji-regex": "^7.0.3",
"emoji-strip": "^1.0.1",
"express": "^4.15.2",
"express-session": "^1.15.6",
"format-microformat": "^0.9.1",
"get-webmention-url": "^2.0.0",
"goodreads": "^0.1.0",
"image-type": "^3.0.0",
"js-yaml": "^3.8.4",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"marked": "^0.4.0",
"mf-obj": "^2.1.0",
"microformat-node": "^2.0.1",
"micropub-express": "^0.7.1",
"mime-types": "^2.1.15",
"moment": "^2.18.0",
"moment-timezone": "^0.5.23",
"multer": "^1.3.1",
"node-rsa": "^1.0.1",
"prismjs": "^1.15.0",
"pug": "^2.0.0-rc.4",
"reading-time": "^1.1.0",
"request": "^2.81.0",
"request-promise": "^4.2.2",
"send-webmention": "^1.0.2",
"sjcl": "^1.0.8",
"sqlite3": "^4.0.3",
"to-markdown": "^3.0.4"
}
}