-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·113 lines (113 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·113 lines (113 loc) · 3.22 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
{
"name": "hull-sql",
"description": "Install SQL connector on your Hull dashboard",
"version": "0.3.27",
"homepage": "https://github.com/hull-ships/hull-sql",
"license": "MIT",
"main": "dist/ship.js",
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": "8.x",
"npm": "3.x",
"yarn": "1.x"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-sql"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-sql/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server && npm run build:client",
"build:client": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack.config.js --progress --profile --colors",
"build:server": "babel server -d build",
"clean": "rimraf build",
"start": "nf start",
"start:dev": "NODE_ENV=development COMBINED=true babel-watch -L server",
"ngrok": "ngrok http 8082 --region eu --subdomain sql",
"test": "npm run test:lint && npm run test:flow && npm run test:unit && npm run test:integration",
"test:lint": "eslint server",
"test:integration": "NODE_ENV=test mocha --require babel-register -R spec ./test/integration",
"test:unit": "NODE_ENV=test mocha --require babel-register -R spec ./test/unit",
"test:flow": "flow check",
"update": "updtr",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship"
],
"dependencies": {
"JSONStream": "^1.3.1",
"aws-sdk": "^2.94.0",
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"batch-stream": "^0.1.3",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bootstrap-sweetalert": "^1.0.1",
"cache-manager": "2.5.0",
"camelize": "^1.0.0",
"codemirror": "^5.28.0",
"css-loader": "^0.28.4",
"dotenv": "^2.0.0",
"ejs": "^2.5.7",
"express": "^4.15.4",
"hull": "^0.13.16",
"jquery": "^3.2.1",
"json-loader": "^0.5.7",
"lodash": "^4.13.1",
"hull-mariadb": "1.0.0",
"minimist": "^1.2.0",
"moment": "^2.17.1",
"newrelic": "^4.3.0",
"pg": "^6.1.1",
"pg-query-stream": "^1.1.0",
"promise-streams": "^1.0.1",
"raw-body": "^2.3.0",
"rimraf": "^2.4.3",
"s3-upload-stream": "^1.0.7",
"sequelize": "^3.30.0",
"snowflake-sdk": "^1.1.11",
"sqs-consumer": "^3.6.1",
"ssh2": "^0.8.7",
"style-loader": "^0.18.2",
"sweetalert": "^1.1.3",
"tedious": "^8.0.1",
"through2-map": "^3.0.0",
"urijs": "^1.18.4",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.12.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-watch": "^2.0.5",
"chai": "^4.1.1",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"flow-bin": "^0.45.0",
"foreman": "^2.0.0",
"mocha": "^2.5.3",
"nf": "0.0.3",
"sinon": "^2.4.1",
"supertest": "^1.2.0",
"updtr": "^0.1.15",
"watch": "^0.19.1"
},
"resolutions": {
"cache-manager": "2.5.0"
}
}