forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.18 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
{
"name": "sqlpad",
"version": "2.1.3",
"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"
},
"engines": {
"node": ">=4"
},
"contributors": [
{
"name": "D. Can Celasun",
"email": "dcelasun@gmail.com"
}
],
"keywords": [
"sql",
"mssql",
"postgres",
"postgresql",
"mysql",
"crate",
"presto",
"vertica"
],
"repository": {
"type": "git",
"url": "git://github.com/rickbergfalk/sqlpad"
},
"bugs": {
"url": "https://github.com/rickbergfalk/sqlpad/issues",
"email": "rick.bergfalk@gmail.com"
},
"proxy": "http://localhost:3010",
"homepage": "http://BASEURL",
"scripts": {
"standard": "standard",
"test": "standard && mocha --recursive",
"test-client": "react-scripts test --env=jsdom",
"coverage": "istanbul cover _mocha -- --recursive",
"start-server-dev": "node-dev server.js --dir ./db --port 3010 --debug",
"start-client-dev": "react-scripts start",
"prepublish": "npm run build",
"build": "react-scripts build",
"start": "npm run start-server-dev",
"build-dev": "npm run start-client-dev"
},
"dependencies": {
"async": "^2.0.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.x.x",
"cookie-parser": "1.x.x",
"cookie-session": "1.x.x",
"detect-port": "^1.0.0",
"errorhandler": "^1.4.0",
"express": "4.x.x",
"joi": "^10.0.1",
"json2csv": "^3.0.2",
"latest-version": "^2.0.0",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"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.7.1",
"nodemailer": "^2.6.0",
"passport": "^0.3.2",
"passport-google-oauth2": "^0.1.6",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"pg": "^6.0.0",
"pg-cursor": "^1.0.1",
"presto-client": "^0.1.0",
"request": "^2.58.0",
"rimraf": "^2.5.4",
"sanitize-filename": "1.x.x",
"semver-diff": "^2.1.0",
"serve-favicon": "2.x.x",
"toml": "^2.3.0",
"uuid": "^3.0.1",
"vertica": "0.5.x"
},
"main": "server.js",
"bin": {
"sqlpad": "./server.js"
},
"devDependencies": {
"@rickbergfalk/sqlpad-react-scripts": "0.1.2",
"brace": "^0.9.0",
"chai": "^3.5.0",
"deep-equal": "^1.0.1",
"disc": "^1.3.2",
"fixed-data-table": "^0.6.3",
"fs-extra": "^1.0.0",
"istanbul": "^0.4.4",
"keymaster": "^1.6.2",
"marky-mark": "1.x.x",
"mocha": "^3.0.0",
"node-dev": "^3.1.3",
"page": "^1.7.1",
"react": "^15.1.0",
"react-ace": "^4.1.0",
"react-bootstrap": "^0.30.0",
"react-copy-to-clipboard": "^4.2.2",
"react-dom": "^15.1.0",
"react-overlays": "^0.6.6",
"react-s-alert": "^1.1.4",
"react-select": "^1.0.0-rc.1",
"standard": "^8.0.0",
"taucharts": "^0.9.1",
"whatwg-fetch": "^2.0.1"
},
"standard": {
"globals": [
"fetch"
],
"ignore": [
"/public/",
"/build/"
]
}
}