-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "beam-server",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/factorialLabs/beam-server"
},
"engines": {
"node": "6.9.1",
"npm": "3.10.8"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon ./src/app.js | bunyan",
"test": "cross-env NODE_ENV=test mocha --reporter spec --timeout 5000",
"lint": "eslint ./src",
"db-migrate:create": "cross-env DEBUG=knex:tx knex migrate:make $NAME --knexfile=config/knexfile.js",
"db-migrate:up": "cross-env DEBUG=knex:tx knex migrate:latest --knexfile=config/knexfile.js",
"db-migrate:down": "cross-env DEBUG=knex:tx knex migrate:rollback --knexfile=config/knexfile.js",
"build": "cross-env NODE_ENV=test DEBUG=knex:tx knex migrate:latest --knexfile=config/knexfile.js"
},
"dependencies": {
"async": "^1.5.0",
"azure": "^0.10.6",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.14.1",
"bunyan": "^1.8.1",
"cfenv": "1.0.3",
"compression": "^1.6.0",
"connect-assets": "^5.0.1",
"cookie-parser": "^1.4.0",
"errorhandler": "^1.4.2",
"express": "^4.13.3",
"express-session": "^1.12.1",
"express-validator": "^2.18.0",
"fbgraph": "^1.1.0",
"grunt-contrib-watch": "~0.6.1",
"jit-grunt": "^0.9.1",
"jwt-simple": "^0.3.1",
"knex": "^0.12.6",
"lodash": "^3.10.1",
"lusca": "^1.3.0",
"method-override": "^2.3.5",
"morgan": "^1.6.1",
"nodemailer": "^1.8.0",
"passport": "0.3.0",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"redis": "^2.3.0",
"request": "^2.65.0",
"socket.io": "^1.3.7",
"socketio-jwt": "^4.3.3",
"time-grunt": "~1.2.2",
"validator": "^4.2.1",
"yui": "^3.18.1"
},
"devDependencies": {
"chai": "^3.4.1",
"cross-env": "^3.1.3",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"grunt": "~0.4.5",
"mocha": "^2.3.3",
"mock-knex": "^0.3.7",
"multiline": "^1.0.2",
"nodemon": "^1.9.0",
"supertest": "^1.1.0"
}
}