forked from Tuxedo21/cmuNodeFbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.08 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
{
"name": "luzdeploy",
"version": "2.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "7.x"
},
"scripts": {
"test": "NODE_ENV=test mocha -r ts-node/register test/*.ts",
"dev": "NODE_ENV=development npm run build:live",
"postinstall": "$(npm bin)/tsc",
"start": "node dist/index.js",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts",
"cron": "node dist/scheduled_jobs/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/csv-parse": "^1.1.8",
"@types/node": "^7.0.8",
"async": "^2.0.1",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.0",
"bookshelf-camelcase": "^1.1.4",
"commander": "^2.9.0",
"csv": "^1.1.0",
"dustjs-linkedin": "^2.7.3",
"express": "^4.14.0",
"facebook-send-api": "^2.8.0",
"knex": "^0.12.7",
"machina": "github:colegleason/machina.js",
"messenger-bot": "^2.3.0",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"moniker": "colegleason/moniker#colegleason-fix-gen-use",
"node-schedule": "^1.2.0",
"open": "0.0.5",
"pg": "^6.0.1",
"raw-body": "^2.2.0",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"sqlite3": "^3.1.4",
"ts-node": "^2.1.0",
"typescript": "^2.3.0-dev.20170222",
"underscore.string": "^3.3.4",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/bookshelf": "^0.8.35",
"@types/chai": "^3.4.35",
"@types/commander": "^2.3.31",
"@types/express": "^4.0.35",
"@types/knex": "0.0.41",
"@types/lodash": "^4.14.52",
"@types/mocha": "^2.2.39",
"@types/moment-timezone": "^0.2.34",
"@types/node-schedule": "0.0.36",
"@types/open": "0.0.29",
"@types/pg": "^6.1.37",
"@types/pg-types": "^1.11.1",
"@types/raw-body": "^2.1.3",
"@types/winston": "^2.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"messenger-bot-tester": "^1.3.1",
"mocha": "^3.0.2",
"mocha-typescript": "^1.0.22",
"nodemon": "^1.11.0",
"sinon": "^1.17.5",
"ts-node": "^2.1.0"
}
}