forked from schn4ck/schnack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "schnack",
"version": "0.2.1",
"dependencies": {
"body-parser": "^1.18.3",
"connect-sqlite3": "^0.9.11",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.15.6",
"lodash.countby": "^4.6",
"marked": "^0.3.19",
"moment": "^2.22.2",
"nconf": "^0.10.0",
"node-fetch": "^2.3.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.11",
"passport-google-oauth": "^1.0.0",
"passport-mastodon": "^0.1.3",
"passport-twitter": "^1.0.4",
"pushover-notifications": "^0.2.4",
"request": "^2.88.0",
"rss": "^1.2.2",
"sqlite": "^3.0.0",
"sqlite3": "^4.0.4",
"unfetch": "^3.1.2",
"web-push": "^3.3.3"
},
"scripts": {
"start": "node index.js",
"build": "rollup -cw",
"test-server": "http-server test -o 'http://localhost:8080/' -P 'http://localhost:3000/'",
"server": "NODE_ENV=development nodemon index.js",
"import": "node src/importer.js",
"dev": "test/run"
},
"description": "a simple node app for disqus-like drop-in commenting on static websites",
"main": "index.js",
"repository": "[email protected]:gka/schnack.git",
"author": "Gregor Aisch",
"license": "LIL",
"contributors": [
{
"name": "Gregor Aisch",
"web": "https://driven-by-data.net"
},
{
"name": "Moritz Klack",
"web": "https://moritzklack.com"
},
{
"name": "g-div",
"web": "https://github.com/g-div"
}
],
"devDependencies": {
"http-server": "^0.10.0",
"nodemon": "^1.18.6",
"rollup": "^0.55.4",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-jst": "^1.2.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-template": "^1.0.10",
"rollup-plugin-uglify": "^2.0.1",
"to-markdown": "^3.1.0",
"xml2js": "^0.4.19"
}
}