forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 3.81 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "sqlpad",
"version": "2.7.1",
"description": "Web app. Write SQL and visualize the results. Supports Postgres, MySQL, SQL Server, Crate, Vertica and SAP HANA.",
"license": "MIT",
"engines": {
"node": ">=6"
},
"keywords": [
"sql",
"mssql",
"postgres",
"postgresql",
"mysql",
"crate",
"presto",
"vertica",
"sap",
"hana"
],
"repository": {
"type": "git",
"url": "git://github.com/rickbergfalk/sqlpad"
},
"bugs": {
"url": "https://github.com/rickbergfalk/sqlpad/issues"
},
"proxy": "http://localhost:3010",
"scripts": {
"build": "react-scripts build",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"lint": "eslint '**/*.js'",
"start-client-dev": "react-scripts start",
"start-server-dev": "node-dev server/server.js --dir ./db --port 3010 --debug --base-url '/sqlpad'",
"start": "concurrently \"npm run start-server-dev\" \"npm run start-client-dev\"",
"test-client": "react-scripts test --env=jsdom",
"test": "rimraf dbtest && npm run lint && SQLPAD_DB_PATH='./dbtest' mocha server/test --timeout 10000 --recursive --exit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"cassandra-driver": "^3.5.0",
"detect-port": "^1.2.2",
"errorhandler": "^1.4.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"hdb": "^0.15.4",
"helmet": "^3.12.0",
"joi": "^12.0.0",
"json2csv": "^3.11.5",
"latest-version": "^3.1.0",
"lodash": "^4.17.10",
"memorystore": "^1.6.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"mssql": "^4.1.0",
"mysql": "^2.15.0",
"nedb": "^1.8.0",
"nedb-promise": "^2.0.1",
"node-crate": "^2.0.3",
"node-fetch": "^2.1.2",
"node-xlsx": "^0.11.2",
"nodemailer": "^4.6.4",
"passport": "^0.4.0",
"passport-google-oauth2": "^0.1.6",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"pg-cursor": "^1.0.1",
"request": "^2.85.0",
"rimraf": "^2.5.4",
"sanitize-filename": "^1.6.1",
"semver-diff": "^2.1.0",
"serve-favicon": "^2.5.0",
"socksjs": "^0.5.0",
"uuid": "^3.2.1",
"vertica": "^0.5.5"
},
"main": "./server/app.js",
"bin": {
"sqlpad": "./server/server.js"
},
"optionalDependencies": {
"odbc": "^1.4.1"
},
"devDependencies": {
"@rickbergfalk/sqlpad-react-scripts": "^1.0.13",
"babel-eslint": "^7.2.3",
"babel-runtime": "^6.26.0",
"bootstrap": "^3.3.7",
"brace": "^0.11.1",
"concurrently": "^3.5.1",
"d3": "^3.5.17",
"deep-equal": "^1.0.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"keymaster": "^1.6.2",
"lint-staged": "^6.1.1",
"lodash.debounce": "^4.0.8",
"lodash.sortby": "^4.7.0",
"lodash.uniq": "^4.5.0",
"marked": "^0.3.19",
"mocha": "^5.1.1",
"node-dev": "^3.1.3",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-ace": "^6.1.0",
"react-bootstrap": "^0.32.1",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^16.3.2",
"react-draggable": "^3.0.5",
"react-icons": "^2.2.7",
"react-overlays": "^0.8.3",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-s-alert": "^1.4.1",
"react-select": "^1.2.1",
"react-split-pane": "^0.1.77",
"react-virtualized": "^9.18.5",
"sql-formatter": "^2.3.0",
"supertest": "^3.0.0",
"tachyons": "^4.9.1",
"taucharts": "^1.2.1",
"whatwg-fetch": "^2.0.4"
}
}