-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
149 lines (149 loc) · 4.3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "lightning-server",
"description": "lightning dataviz notebooks",
"version": "1.3.0",
"author": {
"name": "Matthew Conlen",
"email": "[email protected]"
},
"window": {
"toolbar": true
},
"main": "server.js",
"keywords": [
"lightning",
"data visualization",
"dataviz",
"d3",
"three.js",
"data viz",
"lightning-viz",
"data server"
],
"bin": {
"lightning-server": "bin/lightning-server.js"
},
"engines": {
"node": "6.3.0"
},
"homepage": "http://lightning-viz.org",
"repository": {
"type": "git",
"url": "https://github.com/lightning-viz/lightning"
},
"scripts": {
"start": "node bin/lightning-server.js",
"dev": "NODE_ENV=development nodemon server.js --watch server.js ",
"electron": "electron electron/",
"test": "mocha --timeout 200000",
"build": "gulp build",
"watch": "gulp",
"migrate": "./node_modules/.bin/sequelize db:migrate --config ./config/database.js",
"createdb": "psql -c 'create database \"lightning-viz\";'",
"postinstall": "npm run fetch-visualizations",
"electron-rebuild": "npm run rebuild-sqlite3;",
"rebuild-sqlite3": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v44-darwin-x64 && node-gyp rebuild --target=0.35.4 --arch=x64 --target_platform=darwin --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v44-darwin-x64",
"fetch-visualizations": "node ./tasks/get_default_visualizations.js",
"generate-standalone-js": "gulp standalone-js"
},
"browserify": {
"transform": [
"reactify",
"jadeify"
]
},
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.4.3",
"browserify": "^11.0.1",
"child-process-promise": "^1.1.0",
"colors": "~0.6.2",
"command-exists": "^1.0.1",
"compression": "^1.0.8",
"concat-stream": "^1.5.1",
"connect-slashes": "^1.2.0",
"cookie-parser": "^1.3.2",
"cookie-session": "^1.0.2",
"cors": "^2.5.2",
"debug": "^2.2.0",
"easyimage": "^1.0.1",
"express": "^4.13.1",
"forever": "^0.11.1",
"fs-extra": "^0.11.1",
"jade": "^1.11.0",
"knox": "^0.9.0",
"lightning-adjacency": "0.0.14",
"lightning-circle": "0.0.6",
"lightning-force": "0.0.14",
"lightning-gallery": "0.0.8",
"lightning-graph": "^0.1.8",
"lightning-graph-bundled": "0.0.9",
"lightning-histogram": "^0.2.1",
"lightning-image": "0.0.8",
"lightning-image-poly": "0.0.10",
"lightning-line": "^1.0.1",
"lightning-line-streaming": "0.0.8",
"lightning-map": "0.0.11",
"lightning-matrix": "0.0.15",
"lightning-scatter": "^0.1.10",
"lightning-scatter-3": "0.0.8",
"lightning-scatter-streaming": "0.0.9",
"lightning-vega-lite": "0.0.8",
"lightning-volume": "0.0.7",
"lodash": "^3.8.0",
"marked": "~0.3.2",
"method-override": "^2.1.1",
"moment": "~2.6.0",
"multiparty": "^3.3.1",
"node-uuid": "^1.4.1",
"npm": "^3.10.5",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"q": "~1.0.1",
"randomstring": "^1.0.3",
"sequelize": "^3.23.6",
"serve-favicon": "^2.1.6",
"serve-static": "^1.10.0",
"socket.io": "^1.3.6",
"sqlite3": "^3.1.4",
"title-case": "^1.1.1",
"validator": "~3.17.0",
"webshot": "^0.15.3",
"yargs": "^1.3.3"
},
"devDependencies": {
"electron": "^0.4.1",
"expect.js": "^0.3.1",
"gulp": "~3.8.0",
"gulp-browserify": "~0.5.0",
"gulp-browserify-protect": "^0.1.0",
"gulp-csso": "~0.2.7",
"gulp-if": "0.0.5",
"gulp-livereload": "~1.3.1",
"gulp-sass": "^2.1.0",
"gulp-uglify": "~0.2.1",
"gulp-util": "~2.2.14",
"jadeify": "^4.4.0",
"menubar": "^2.0.16",
"mocha": "^1.21.5",
"nodemon": "*",
"reactify": "^1.1.1",
"tiny-lr": "^0.1.6",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"react": "^0.13.3",
"react-highlight": "^0.5.0",
"react-radio-group": "^2.0.2",
"react-simpletabs": "^0.6.1",
"highlight.js": "^8.2.0",
"immutable": "^3.7.4",
"superagent": "^0.18.2",
"pym.js": "^0.4.1",
"sequelize-cli": "^1.7.4"
},
"optionalDependencies": {
"pg-native": "^1.10.0"
}
}