-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.69 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
{
"name": "baboon-backend",
"description": "REST/Socket.io API backend server, based on NodeJS - Express.",
"version": "0.10.0",
"homepage": "https://github.com/litixsoft/baboon-backend",
"author": "Litixsoft GmbH <[email protected]> (http://www.litixsoft.de)",
"maintainers": [
"Thomas Scheibe <[email protected]>",
"Timo Liebetrau <[email protected]>",
"Marco Kannenberg <[email protected]>",
"Mike Alig <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/litixsoft/baboon-backend.git"
},
"bugs": {
"url": "https://github.com/litixsoft/baboon-backend/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/litixsoft/baboon-backend/blob/master/LICENSE"
}
],
"keywords": [
"baboon web toolkit",
"MEAN backend",
"single-page backend",
"realtime app backend",
"rest api backend server",
"socket.io backend server"
],
"main": "lib/index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "DEBUG=* CONFIG=development NODE_ENV=development node baboon-backend.js",
"demo": "DEBUG=* CONFIG=demo NODE_ENV=development node baboon-backend.js",
"test": "grunt test --stack",
"check": "npm outdated"
},
"dependencies": {
"async": "2.6.1",
"debug": "4.1.0",
"grunt": "1.0.3",
"jwt-simple": "0.5.5",
"lodash": "^4.17.10",
"lx-helpers": "0.5.1",
"lx-valid": "1.2.4",
"method-override": "2.3.10",
"mongodb": "^2.2.36",
"nodemailer": "2.5.0",
"nodemailer-html-to-text": "2.1.0",
"nodemailer-pickup-transport": "0.1.1",
"nodemailer-smtp-pool": "2.7.0",
"nodemailer-smtp-transport": "2.6.0",
"open": "0.0.5"
},
"devDependencies": {
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.3",
"grunt-bump": "0.8.0",
"grunt-concurrent": "2.3.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-conventional-changelog": "6.1.0",
"grunt-eslint": "21.0.0",
"grunt-jasmine-node": "valiton/grunt-jasmine-node",
"grunt-nodemon": "0.4.2",
"grunt-open": "^0.2.3",
"grunt-shell": "^2.1.0",
"istanbul": "^0.4.5",
"jasmine-node": "2.0.1",
"load-grunt-tasks": "4.0.0",
"morgan": "1.9.0",
"node-rest-client": "3.1.0",
"socket.io": "2.1.1",
"socket.io-client": "2.1.1",
"time-grunt": "1.4.0"
}
}