forked from schn4ck/schnack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.19 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
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
{
"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.24.0",
"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-oauth2-cognito": "^0.1.0",
"passport-twitter": "^1.0.4",
"pushover-notifications": "^0.2.4",
"request": "^2.88.0",
"rss": "^1.2.2",
"sqlite": "^3.0.2",
"sqlite3": "^4.0.6",
"unfetch": "^3.1.2",
"web-push": "^3.3.3"
},
"scripts": {
"start": "node index.js",
"build": "rollup -cw",
"test-server": "http-server test -p 8080 -a localhost -S --cert ./certs/local.crt --key ./certs/local.key",
"server": "cross-env NODE_ENV=development nodemon index.js",
"import": "node src/importer.js",
"dev": "test/run",
"jira-boards": "node src/jira/boards.js",
"jira-test": "node src/jira/test.js"
},
"description": "a simple node app for disqus-like drop-in commenting on static websites",
"main": "index.js",
"repository": "git@github.com: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"
},
{
"name": "Jerram Digital",
"web": "https://jerram.co.uk/"
}
],
"devDependencies": {
"cross-env": "^5.2.0",
"http-server": "^0.10.0",
"jira-connector": "^2.10.0",
"nodemon": "^1.18.10",
"rollup": "^0.55.4",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-jst": "^1.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"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"
}
}