forked from active911/asterisk-analyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.51 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
{
"name": "asterisk-analyze",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "test"
},
"jshintConfig": {
"esversion": 6,
"unused": true
},
"scripts": {
"//": "DEV RULES",
"test": "mocha",
"lint:js": "jshint --reporter=node_modules/jshint-stylish server.js etl.js src/app.js",
"lint:html": "node helpers/lint-html.js",
"webpack": "NODE_ENV=production webpack",
"build": "npm run lint:js -s && npm run lint:html -s && npm run test -s && npm run webpack -s",
"watch:webpack": "webpack --progress --colors --watch",
"browsersync": "browser-sync start --proxy 'localhost:3000' --files 'public/*' 'server.js' --port 3001",
"watch:server": "nodemon -w server.js server.js | ./node_modules/bunyan/bin/bunyan",
"watch:lint:js": "nodemon -w server.js -w etl.js -w src/app.js -x npm run lint:js -s",
"watch:lint:html": "nodemon -w public/index.html -x npm run lint:html -s",
"dev": "parallelshell 'npm run watch:lint:js -s' 'npm run watch:lint:html -s' 'npm run watch:server -s' 'npm run browsersync -s' 'npm run watch:webpack -s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/active911/asterisk-analyze.git"
},
"author": "c0d3",
"license": "ISC",
"bugs": {
"url": "https://github.com/active911/asterisk-analyze/issues"
},
"homepage": "https://github.com/active911/asterisk-analyze#readme",
"dependencies": {
"always-tail2": "^1.0.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"crossfilter": "^1.3.12",
"d3": "^4.11.0",
"dc": "^2.1.9",
"express": "^4.16.2",
"ioredis": "^3.2.1",
"jquery": "^3.2.1",
"line-by-line": "^0.1.5",
"moment": "^2.19.1",
"morgan": "^1.9.0",
"promise-mysql": "^3.1.1",
"syslogd": "^1.1.2",
"ws": "^3.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^3.3.7",
"browser-sync": "^2.18.13",
"bunyan-pretty": "0.0.1",
"crossfilter2": "^1.4.3",
"css-loader": "^0.28.7",
"dc": "^2.1.9",
"expose-loader": "^0.7.3",
"file-loader": "^1.1.5",
"html5-lint": "^0.3.0",
"jsdom": "^11.3.0",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"json-loader": "^0.5.7",
"mocha": "^4.0.1",
"parallelshell": "^3.0.2",
"reconnectingwebsocket": "^1.0.0",
"style-loader": "^0.19.0",
"uglify-js": "^3.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.8.1"
}
}