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
131 lines (131 loc) · 3.23 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.23 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
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
{
"name": "sqlpad",
"version": "2.2.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]"
},
"engines": {
"node": ">=4"
},
"contributors": [
{
"name": "D. Can Celasun",
"email": "[email protected]"
}
],
"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": "[email protected]"
},
"proxy": "http://localhost:3010",
"homepage": "http://BASEURL",
"scripts": {
"standard": "standard --fix",
"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.7.3",
"latest-version": "^3.1.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",
"socksjs": "^0.5.0",
"toml": "^2.3.0",
"uuid": "^3.0.1",
"vertica": "0.5.x"
},
"main": "server.js",
"bin": {
"sqlpad": "./server.js"
},
"devDependencies": {
"@rickbergfalk/sqlpad-react-scripts": "^1.0.7",
"brace": "^0.10.0",
"chai": "^4.0.0",
"deep-equal": "^1.0.1",
"ejs": "^2.5.6",
"fixed-data-table": "^0.6.3",
"fs-extra": "^3.0.1",
"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": "^5.0.1",
"react-bootstrap": "^0.31.0",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^15.1.0",
"react-overlays": "^0.7.0",
"react-s-alert": "^1.1.4",
"react-select": "^1.0.0-rc.1",
"standard": "^10.0.2",
"taucharts": "^1.2.1",
"watch": "^1.0.2",
"whatwg-fetch": "^2.0.1"
},
"standard": {
"globals": [
"fetch"
],
"ignore": [
"/public/",
"/build/"
]
}
}