-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.63 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.63 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
{
"name": "hull-processor",
"description": "Run code to update User Properties and generate Events",
"version": "0.2.30",
"homepage": "https://github.com/hull-ships/hull-processor",
"license": "MIT",
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": "8.10.x",
"npm": "5.6.x",
"yarn": "1.5.x"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-processor"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-processor/issues"
},
"scripts": {
"ngrok": "ngrok http 8082 --region eu --subdomain hull-processor",
"ngrok:dev": "ngrok http 8082 --region eu",
"build": "npm run clean && npm run build:server && npm run build:client",
"build:client": "NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --colors",
"build:server": "./node_modules/.bin/babel server -d lib",
"start": "NODE_ENV=production node --optimize_for_size --max_old_space_size=$WEB_MEMORY -r newrelic ./lib",
"start:dev": "NODE_ENV=development LOG_LEVEL=debug babel-watch -L server",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "./node_modules/.bin/eslint server",
"test:modules": "npm outdated --depth=0",
"test:unit": "NODE_ENV=test mocha --exit --require babel-core/register -R spec ./tests/unit/*.js",
"test:integration": "NODE_ENV=test mocha --exit --require babel-core/register -R spec ./tests/integration/*.js",
"clean": "./node_modules/.bin/rimraf dist; ./node_modules/.bin/rimraf lib",
"watch": "watch 'clear && npm run test:lint -s && npm run test:units -s && npm run build:client -s' server src",
"update": "./node_modules/.bin/updtr",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship"
],
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.2.1",
"chai": "^4.1.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jwt-decode": "^2.2.0",
"minihull": "^2.1.0",
"mocha": "^5.0.0",
"react-hot-loader": "^3.1.3",
"sinon": "^4.1.6",
"supertest": "^3.0.0",
"updtr": "^2.0.0",
"watch": "^1.0.2",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"bluebird": "^3.4.1",
"body-parser": "^1.18.2",
"cache-manager-redis": "^0.5.0",
"classnames": "^2.2.5",
"codemirror": "^5.33.0",
"compression": "^1.7.1",
"connect": "^3.4.1",
"connect-timeout": "^1.7.0",
"css-loader": "^0.28.9",
"deep-diff": "^0.3.4",
"deep-freeze": "0.0.1",
"deepmerge": "^2.0.1",
"eslint": "^4.18.2",
"event-stream": "3.3.4",
"express": "^4.14.0",
"hull": "0.13.20",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.13",
"moment": "^2.20.1",
"newrelic": "^2.6.0",
"prop-types": "^15.6.0",
"raven": "^2.3.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.0",
"react-dom": "^16.2.0",
"request": "^2.74.0",
"response-time": "^2.3.1",
"rimraf": "^2.5.2",
"style-loader": "^0.19.1",
"superagent": "^3.8.2",
"svg-inline-loader": "^0.8.0",
"svg-inline-react": "^3.0.0",
"syntax-error": "^1.3.0",
"urijs": "^1.19.7",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"winston-logstash": "^0.4.0"
}
}