This repository has been archived by the owner on May 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
95 lines (95 loc) · 2.35 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
{
"name": "webcdr",
"version": "0.9.0",
"description": "Web Asterisk CDR viewer",
"main": "server.js",
"scripts": {
"watch": "watchify public/js/main.js -o public/js/build/bundle.js -v",
"watch-dbg": "watchify public/js/main.js -d -o public/js/build/bundle.js -v",
"build": "browserify public/js/main.js -o public/js/build/bundle.js",
"build-dbg": "browserify public/js/main.js -d -o public/js/build/bundle.js",
"test": "semistandard"
},
"author": "Ivan Poddubny <[email protected]>",
"license": "MIT",
"dependencies": {
"activedirectory": "^0.7.2",
"backbone": "1.3.3",
"backbone.marionette": "^2.0.0",
"backbone.paginator": "^2.0.6",
"backgrid": "^0.3.8",
"backgrid-paginator": "^0.3.9",
"bcryptjs": "^2.2.0",
"bluebird": "^3.4.0",
"body-parser": "^1.13.3",
"bookshelf": "^0.9.5",
"bootstrap": "^3.1.1",
"bootstrap-daterangepicker": "^2.1.30",
"bootstrap-select": "^1.12.4",
"brfs": "^1.4.0",
"compression": "^1.5.0",
"cookie-parser": "^1.3.0",
"cookie-session": "^1.2.0",
"ejs": "^2.5.1",
"excel4node": "^1.2.1",
"express": "^4.13.0",
"express-session": "^1.11.0",
"font-awesome": "^4.7.0",
"glob": "^7.0.0",
"ini": "~1.3.0",
"jquery": "^3.0.0",
"knex": "^0.11.0",
"locale": "^0.1.0",
"lodash": "^4.12.0",
"moment": "^2.10.0",
"moment-timezone": "^0.5.11",
"morgan": "^1.6.0",
"mysql": "^2.9.0",
"node-underscorify": "0.0.14",
"passport": "^0.3.0",
"passport-local": "~1.0.0",
"spin.js": "^2.3.2",
"underscore": "^1.8.0",
"zip-stream": "^1.2.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.0",
"semistandard": "^12.0.0"
},
"private": true,
"browserify": {
"transform": [
[
"node-underscorify",
{
"extensions": [
"html",
"ejs"
],
"requires": [
{
"variable": "_",
"module": "underscore"
}
]
}
],
"browserify-shim"
]
},
"browser": {
"audiojs": "./public/bower_components/audiojs/audiojs/audio.js"
},
"browserify-shim": {
"audiojs": "audiojs"
},
"semistandard": {
"ignore": [
"public/js/vendor/"
]
},
"optionalDependencies": {
"sqlite3": "^3.1.8"
}
}