-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
97
98
99
100
101
{
"name": "fu-marketplace-api",
"version": "1.0.0",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "NODE_ENV=development node app.js | bunyan -o short",
"dev": "NODE_ENV=development nodemon app.js | bunyan -o short",
"test": "NODE_ENV=test mocha test/**/*.js",
"test:file": "NODE_ENV=test mocha",
"test:debug": "NODE_ENV=test mocha --debug-brk",
"db:migrate": "sequelize db:migrate",
"db:seed:all": "sequelize db:seed:all",
"db:seed:undo:all": "sequelize db:seed:undo:all",
"nsp": "nsp check",
"sequelize": "sequelize",
"lint": "gulp lint",
"lint-n-fix": "gulp lint-n-fix",
"setup:elasticsearch": "node bin/setup-elasticsearch.js",
"setup:elasticsearch:force": "FORCE_UPDATE=true node bin/setup-elasticsearch.js",
"elasticsearch:index:all": "node bin/index-all-documents.js",
"utils:seeder:shop": "node bin/shop-seeder.js",
"console": "node repl.js"
},
"dependencies": {
"aws-sdk": "^2.5.1",
"axios": "^0.13.1",
"basic-auth-connect": "^1.0.0",
"bcrypt": "^0.8.6",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bunyan": "^1.8.1",
"compression": "^1.6.2",
"dotenv": "^2.0.0",
"elasticsearch": "^11.0.1",
"email-templates": "^2.3.2",
"errorhandler": "^1.4.3",
"esq": "^1.0.0",
"express": "^4.13.4",
"express-bunyan-logger": "^1.3.0",
"express-validator": "^2.20.4",
"fs-extra": "^0.30.0",
"gm": "^1.22.0",
"googleapis": "^12.3.0",
"handlebars": "^4.0.5",
"jsonwebtoken": "^7.0.0",
"kue": "^0.11.1",
"kue-ui": "^0.1.0",
"lodash": "^4.12.0",
"moment": "^2.13.0",
"moment-timezone": "^0.5.5",
"multiparty": "^4.1.2",
"mustbe": "^0.4.0",
"node-sass": "^3.8.0",
"nodemailer": "^2.5.0",
"nodemailer-mailgun-transport": "^1.2.1",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"redis": "^2.6.2",
"sequelize": "^4.0.0-0",
"sequelize-cli": "^2.4.0",
"sha1": "^1.1.1",
"socket.io": "^1.4.8",
"socket.io-emitter": "^1.0.0",
"socket.io-redis": "^1.0.0",
"supertest-as-promised": "^4.0.0",
"umzug": "^1.11.0",
"validator": "^5.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.3.1",
"faker": "^3.1.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-eslint-if-fixed": "^1.0.0",
"gulp-if": "^2.0.1",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.7",
"mocha": "^3.0.2",
"node-mocks-http": "^1.5.2",
"nodemailer-pickup-transport": "^0.1.1",
"nsp": "^2.4.0",
"prompt": "^1.0.0",
"redis": "^2.6.2",
"rewire": "^2.5.1",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.0",
"socket.io-client": "^1.4.8",
"supertest": "^2.0.0",
"timekeeper": "^0.1.1"
},
"engines": {
"node": "5.11.1"
},
"license": "MIT"
}