-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
103 lines (103 loc) · 2.89 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
102
103
{
"name": "Bitbloq-Server",
"version": "v1.2.2",
"description": "Backend for bitbloq web app",
"main": "index.js",
"scripts": {
"start": "supervisor index.js",
"monitor": "nodemon ./app/${SCRIPT:-app.js}",
"deploy": "gcloud preview app deploy app.yaml worker.yaml",
"lint": "jshint --exclude-path=../.gitignore .",
"mocha": "mocha test/index.js -t 30000",
"test": "npm run lint && npm run mocha",
"init-cloudsql": "node books/model-cloudsql.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bq/bitbloq-backend"
},
"keywords": [
"Backend",
"Server"
],
"contributors": [
{
"name": "Laura del Río",
"email": "[email protected]"
},
{
"name": "Álvaro Sánchez",
"email": "[email protected]"
},
{
"name": "Tomás Calvo",
"email": "[email protected]"
},
{
"name": "Diego Segura",
"email": "[email protected]"
},
{
"name": "Alberto Valero",
"email": "[email protected]"
},
{
"name": "David García Paredes",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/bq/bitbloq-backend/issues"
},
"homepage": "https://github.com/bq/bitbloq-backend/#readme",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"composable-middleware": "^0.3.0",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"cookie-session": "^2.0.0-alpha.1",
"cors": "^2.7.1",
"crypto": "0.0.3",
"dot": "^1.0.3",
"dotenv": "^2.0.0",
"email-templates": "^2.2.0",
"errorhandler": "^1.4.3",
"express": "^4.13.4",
"express-jwt": "^3.3.0",
"express-session": "^1.13.0",
"express-winston": "^1.2.0",
"gcloud": "^0.36.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"http": "0.0.0",
"jsonwebtoken": "^5.7.0",
"kerberos": "^0.0.18",
"lodash": "^4.5.1",
"lusca": "^1.3.0",
"method-override": "^2.3.5",
"mongoose": "4.8.2",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"node-sass": "^3.6.0",
"nodemailer": "^2.3.0",
"nodemailer-smtp-transport": "^2.4.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"request": "^2.72.0",
"supervisor": "^0.10.0",
"winston": "^2.1.1"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3",
"supertest": "^1.1.0"
},
"engines": {
"node": ">=0.12.7"
}
}