forked from hull-ships/hull-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·98 lines (98 loc) · 2.83 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
{
"name": "hull-sql",
"description": "Install SQL connector on your Hull dashboard",
"version": "0.0.1",
"homepage": "https://github.com/hull-ships/hull-sql",
"license": "MIT",
"main": "dist/ship.js",
"author": {
"name": "Hull",
"email": "[email protected]",
"url": "https://github.com/hull"
},
"engines": {
"node": "7.x",
"npm": "3.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",
"build:client": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack.config.js --progress --profile --colors",
"build:server": "./node_modules/.bin/babel server -d build",
"clean": "./node_modules/.bin/rimraf build",
"start": "nf start",
"start:dev": "WORKER_MODE=embedded SECRET=12345 babel-watch -L server/web",
"test": "npm run test:lint && npm run test:units",
"test:lint": "./node_modules/.bin/eslint server",
"test:units": "NODE_ENV=test ./node_modules/.bin/mocha -R spec ./tests/index",
"update": "./node_modules/.bin/updtr",
"watch": "./node_modules/.bin/watch 'clear && npm run test:lint -s && npm run test:units -s && npm run build:client -s' server src",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship"
],
"dependencies": {
"JSONStream": "^1.3.1",
"aws-sdk": "^2.7.13",
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.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",
"camelize": "^1.0.0",
"connect": "^3.4.1",
"dotenv": "^2.0.0",
"ejs": "^2.4.2",
"express": "^4.14.0",
"hull": "0.10.0",
"json-loader": "^0.5.3",
"kue": "^0.11.5",
"kue-ui": "^0.1.0",
"librato-node": "^4.1.0",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"moment": "^2.17.1",
"mysql": "^2.12.0",
"newrelic": "^1.28.1",
"pg": "^6.1.1",
"pg-query-stream": "^1.0.0",
"promise-streams": "^1.0.1",
"raw-body": "^2.1.7",
"rimraf": "^2.4.3",
"s3-upload-stream": "^1.0.7",
"sequelize": "^3.30.0",
"through2-map": "^3.0.0",
"urijs": "^1.18.4",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-watch": "^2.0.5",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"foreman": "^2.0.0",
"mocha": "^2.5.3",
"nf": "0.0.3",
"nodemon": "^1.10.0",
"sinon": "^2.1.0",
"supertest": "^1.2.0",
"updtr": "^0.1.15",
"watch": "^0.19.1"
}
}