forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.46 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
{
"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": "[email protected]"
},
"contributors": [
{
"name": "D. Can Celasun",
"email": "[email protected]"
}
],
"keywords": [
"sql",
"mssql",
"postgres",
"postgresql",
"mysql"
],
"repository": {
"type": "git",
"url": "git://github.com/rickbergfalk/sqlpad"
},
"bugs": {
"url": "https://github.com/rickbergfalk/sqlpad/issues",
"email": "[email protected]"
},
"scripts": {
"start": "nodemon server.js --dir ./db --port 3000 --engine ejs --debug --ignore public/** --ignore public/javascripts/** --ignore public/stylesheets/** --ignore dist/**",
"react": "nodemon index.js --dir ./db --port 3000 --engine react --debug --ignore public/** --ignore public/javascripts/** --ignore public/stylesheets/** --ignore dist/**",
"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": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.5.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.15.1",
"codemirror": "^5.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.2",
"cookie-session": "1.x.x",
"ejs": "~2.4.1",
"errorhandler": "^1.4.0",
"express": "~4.13.4",
"install": "^0.8.1",
"json2csv": "^3.0.2",
"keymaster": "^1.6.2",
"lodash": "^4.12.0",
"method-override": "2.x.x",
"moment": "^2.13.0",
"morgan": "1.x.x",
"mssql": "^3.0.0",
"mysql": "2.x.x",
"nedb": "1.x.x",
"node-crate": "1.x.x",
"node-xlsx": "^0.7.1",
"npm": "^3.9.2",
"passport": "^0.3.2",
"passport-google-oauth2": "^0.1.6",
"passport-local": "^1.0.0",
"path": "*",
"pg": "^4.1.0",
"pg-cursor": "^1.0.0",
"rc": "^1.1.6",
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"react-engine": "^3.4.1",
"react-json-tree": "^0.7.4",
"react-router": "^2.4.1",
"reactify": "^1.1.1",
"request": "^2.58.0",
"sanitize-filename": "1.x.x",
"serve-favicon": "2.x.x",
"ua-parser": "0.3.x",
"update-notifier": "^0.7.0",
"uuid": "^2.0.1",
"vertica": "0.5.x",
"whatwg-fetch": "^1.0.0"
},
"main": "server.js",
"bin": {
"sqlpad": "./server.js"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"browserify-shim": "3.x.x",
"nodemon": "^1.8.1",
"react-hot-loader": "^1.3.0",
"react-tools": "^0.13.3"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"ace": "global:ace",
"codemirror": "global:CodeMirror",
"Slick": "global:Slick",
"d3": "global:d3",
"saveSvgAsPng": "global:saveSvgAsPng",
"Bloodhound": "global:Bloodhound",
"tauCharts": "global:tauCharts",
"_": "global:_",
"ZeroClipboard": "global:ZeroClipboard"
}
}