forked from dan-divy/spruce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.18 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "spruce",
"version": "4.0.0",
"update": false,
"scripts": {
"start": "node update.js; node ./bin/www",
"test": "mocha",
"postinstall": "opencollective-postinstall || true",
"app": "node update.js; node ./bin/www --app"
},
"dependencies": {
"apikeygen": "^1.1.0",
"array-tools": "1.8.6",
"bcrypt-nodejs": "0.0.3",
"chai": "^4.2.0",
"cookie-parser": "^1.4.4",
"debug": "~2.6.9",
"ejs": "^2.5.9",
"express": "~4.16.0",
"express-session": "^1.17.0",
"file-system": "^2.2.2",
"formidable": "^1.2.1",
"googleapis": "^39.2.0",
"guid": "0.0.12",
"http-errors": "~1.6.2",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"mongoose": "^5.7.9",
"morgan": "~1.9.0",
"mv": "2.1.1",
"newsapi": "^2.4.0",
"opencollective-postinstall": "^2.0.2",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"prompts": "^2.2.1",
"request": "2.88.0",
"socket.io": "^2.3.0",
"time-ago": "0.2.1"
},
"description": "A social media platform written in Node.js (the 5th time)",
"main": "./bin/www",
"keywords": [
"social",
"media",
"nodejs",
"express",
"mongodb",
"mongoose",
"platform"
],
"build": {
"publish": [
{
"provider": "github",
"owner": "DivySrivastava",
"repo": "spruce"
}
],
"appId": "com.divysrivastava.desktop.spruce",
"copyright": "Divy Srivastava 2019",
"mac": {
"target": [
"dmg",
"zip"
],
"publish": "github",
"category": "public.app-category.social-networking"
},
"win": {
"target": [
"nsis",
"portable"
],
"publish": "github",
"publisherName": "DivySrivastava"
},
"linux": {
"target": [
"AppImage",
"zip",
"deb"
],
"publish": "github",
"maintainer": "Divy Srivastava <[email protected]>"
}
},
"author": "Dan-Divy <[email protected],[email protected]>",
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/dan_divy"
},
"optionalDependencies": {
"usage": "^0.7.1"
}
}