This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.68 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
{
"author": "Evan Tahler <evan@messagebot.io>",
"name": "messagebot-core",
"description": "MessageBot's core application",
"version": "0.0.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/messagebot/messagebot-core.git"
},
"engines": {
"node": "8.x.x"
},
"dependencies": {
"actionhero": "^17.1.0",
"ah-resque-ui": "^0.4.0",
"ah-swagger-plugin": "^1.0.1",
"async": "^2.4.1",
"bcrypt": "^1.0.2",
"easy-table": "^1.1.0",
"faker": "^4.1.0",
"fakeredis": "^2.0.0",
"fast-csv": "^2.4.0",
"glob": "^7.1.2",
"ioredis": "^3.1.2",
"maxmind": "^1.3.0",
"messagebot-transport-logger": "^0.0.2",
"messagebot-transport-smtp": "^0.0.2",
"mkdirp": "^0.5.1",
"mustache": "^2.2.1",
"mysql": "^2.14.1",
"pg": "^6.4.0",
"qs": "^6.4.0",
"request": "^2.81.0",
"sanitize-html": "^1.14.1",
"sequelize": "^3.30.4",
"sequelize-cli": "^2.8.0",
"ws": "^3.1.0"
},
"devDependencies": {
"mocha": "^3.5.0",
"should": "^11.2.1",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"client"
],
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it"
]
},
"scripts": {
"help": "actionhero help",
"start": "actionhero start",
"actionhero": "actionhero",
"cluster": "actionhero start cluster",
"console": "actionhero console",
"test": "NODE_ENV=test mocha --reporter dot",
"pretest": "standard",
"postinstall": "./bin/postinstall",
"migrate": "sequelize db:migrate",
"faker:run": "node db/faker/run.js",
"faker:seed": "node db/faker/seed.js"
}
}