forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.39 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
{
"name": "sqlpad",
"version": "1.15.0",
"description": "Web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, SQL Server, Crate and Vertica.",
"license": "MIT",
"author": {
"name": "Rick Bergfalk",
"email": "rick.bergfalk@gmail.com"
},
"contributors": [{
"name": "D. Can Celasun",
"email": "dcelasun@gmail.com"
}],
"keywords": [
"sql",
"mssql",
"postgres",
"postgresql",
"mysql"
],
"repository": {
"type": "git",
"url": "git://github.com/rickbergfalk/sqlpad"
},
"bugs": {
"url": "https://github.com/rickbergfalk/sqlpad/issues",
"email": "rick.bergfalk@gmail.com"
},
"scripts": {
"start": "nodemon server.js --dir ./db --port 3000 --debug",
"watchify": "watchify ./client-js/main.js -o ./public/javascripts/browserified.js -t browserify-shim -v",
"bundle": "browserify ./client-js/main.js -o ./public/javascripts/browserified.js -t browserify-shim"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.x.x",
"connect-flash": "^0.1.1",
"cookie-parser": "1.x.x",
"cookie-session": "1.x.x",
"ejs": "^2.3.4",
"errorhandler": "^1.4.0",
"express": "4.x.x",
"json2csv": "^3.0.2",
"keymaster": "^1.6.2",
"lodash": "^3.10.1",
"method-override": "1.x.x",
"moment": "2.x.x",
"morgan": "1.x.x",
"mssql": "^3.0.0",
"mysql": "2.x.x",
"nedb": "1.x.x",
"node-crate": "1.x.x",
"node-xlsx": "^0.6.0",
"passport": "^0.3.2",
"passport-google-oauth2": "^0.1.6",
"passport-local": "^1.0.0",
"pg": "^4.1.0",
"pg-cursor": "^1.0.0",
"rc": "^1.1.6",
"request": "^2.58.0",
"sanitize-filename": "1.x.x",
"serve-favicon": "2.x.x",
"ua-parser": "0.3.x",
"update-notifier": "^0.6.0",
"uuid": "^2.0.1",
"vertica": "0.5.x"
},
"main": "server.js",
"bin": {
"sqlpad": "./server.js"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "3.x.x",
"nodemon": "^1.8.1"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"ace": "global:ace",
"Slick": "global:Slick",
"d3": "global:d3",
"saveSvgAsPng": "global:saveSvgAsPng",
"Bloodhound": "global:Bloodhound",
"tauCharts": "global:tauCharts",
"_": "global:_",
"ZeroClipboard": "global:ZeroClipboard"
}
}