forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.9 KB
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
{
"name": "sqlpad",
"version": "1.6.0",
"description": "Web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, and SQL Server.",
"license": "MIT",
"author": {
"name": "Rick Bergfalk",
"email": "rick.bergfalk@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",
"watchify": "watchify ./client-js/main.js -o ./public/javascripts/browserified.js -t browserify-shim",
"bundle": "browserify ./client-js/main.js -o ./public/javascripts/browserified.js -t browserify-shim"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.2.x",
"cookie-parser": "1.1.x",
"cookie-session": "1.0.x",
"ejs": "1.0.x",
"express": "4.x.x",
"json2csv": "2.2.x",
"keymaster": "^1.6.2",
"lodash": "2.4.x",
"method-override": "1.0.x",
"moment": "2.8.x",
"morgan": "1.1.x",
"mssql": "1.x.x",
"mysql": "2.x.x",
"nedb": "1.x.x",
"pg": "^4.1.0",
"pg-cursor": "^1.0.0",
"rc": "^0.5.4",
"sanitize-filename": "1.1.x",
"serve-favicon": "2.0.x",
"ua-parser": "0.3.x",
"update-notifier": "0.1.x",
"uuid": "1.4.x",
"vertica": "0.5.x"
},
"main": "server.js",
"bin": {
"sqlpad": "./server.js"
},
"devDependencies": {
"browserify": "4.1.x",
"browserify-shim": "3.5.x"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"ace": "global:ace",
"Slick": "global:Slick",
"d3": "global:d3",
"dimple": "global:dimple",
"saveSvgAsPng": "global:saveSvgAsPng"
}
}