forked from epochtalk/epochtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.9 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "epochtalk",
"version": "0.4.18",
"description": "Epochtalk forum software",
"main": "server",
"scripts": {
"sass": "node ./scripts/sass.js",
"build": "node ./scripts/build.js",
"serve": "node ./scripts/serve.js",
"db-create": "node ./scripts/db-create",
"test": "./node_modules/.bin/mocha -R spec ./tests && dropdb --if-exists epoch_test && createdb epoch_test && psql epoch_test < ./schema.sql",
"start": "./node_modules/.bin/bower install && npm run build && node cli/index.js --create && node server"
},
"repository": {
"type": "git",
"url": "git://github.com/epochtalk/epochtalk"
},
"author": "James Wang <jw@slickage.com> (http://slickage.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/epochtalk/epochtalk/issues"
},
"homepage": "https://github.com/epochtalk/epochtalk",
"apidoc": {
"title": "Epochtalk",
"description": "Overview of Epochtalk API",
"url": "/api"
},
"dependencies": {
"angular": "1.4.4",
"angular-animate": "1.4.4",
"angular-loading-bar": "0.7.1",
"angular-resource": "1.4.4",
"angular-sanitize": "1.4.4",
"angular-sortable-view": "0.0.13",
"angular-ui-router": "0.2.15",
"aws-sdk": "^2.7.22",
"bcrypt": "^0.8.0",
"bluebird": "^3.3.1",
"boom": "^7.1.1",
"change-case": "^2.3.1",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"deep-rename-keys": "^0.1.0",
"del": "^2.2.0",
"dot": "^1.0.3",
"dotenv": "^4.0.0",
"epochtalk-core-pg": "^1.0.8",
"fs-extra": "^4.0.2",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-file": "^6.0.1",
"good-http": "^6.1.3",
"good-squeeze": "^5.0.2",
"handlebars": "^4.0.11",
"hapi": "^16.6.2",
"hoek": "^5.0.2",
"html-loader": "^0.5.1",
"inert": "^4.2.1",
"ip-address": "^5.0.2",
"joi": "^13.0.1",
"jquery": "2.1.4",
"json": "^9.0.3",
"jsonwebtoken": "^8.1.0",
"klaw": "^2.1.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"mkdirp": "^0.5.1",
"mmmagic": "^0.4.6",
"nestable": "git+https://github.com/slickage/Nestable.git",
"ng-tags-input": "3.0.0",
"node-sass": "^4.7.2",
"node-sass-globbing": "0.0.23",
"nodemailer": "^2.0.0",
"nodemailer-ses-transport": "^1.5.1",
"oclazyload": "^1.1.0",
"pg": "^6.1.2",
"redis": "^2.8.0",
"request": "^2.83.0",
"rolling-rate-limiter": "^0.1.10",
"sanitize-html": "^1.4.3",
"socketcluster": "^4.3.2",
"socketcluster-client": "^4.3.7",
"stream-meter": "^1.0.3",
"through2": "^2.0.0",
"uuid": "^3.1.0",
"vision": "^4.1.1",
"webpack": "^1.12.2"
},
"devDependencies": {
"brototype": "0.0.6",
"code": "^4.0.0",
"faker": "^4.1.0",
"lab": "^13.0.1",
"livereload": "^0.4.0",
"mocha": "^2.4.1",
"nodemon": "^1.1.1",
"parse-database-url": "^0.3.0",
"watch": "^0.17.1"
},
"bin": {
"epoch": "cli/index.js"
}
}