This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.14 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
{
"name": "",
"version": "0.0.1",
"description": "Connector description",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"license": "MIT",
"author": {
"name": "Hull",
"email": "[email protected]",
"url": "https://spendesk.com"
},
"keywords": [
"hull",
"ship",
"connector",
"hull-ship",
"hull-connector",
"hull-connector-template-1.0.0"
],
"engines": {
"node": "8.11.x",
"npm": "5.6.x",
"yarn": "1.6.x"
},
"scripts": {
"ngrok": "ngrok http 8082 --region eu --subdomain ",
"build": "yarn run build:clean && yarn run build:server && yarn run build:client",
"build:clean": "rimraf dist && rimraf build",
"build:server": "babel server -d build",
"build:client": "NODE_ENV=production webpack --config ./webpack.config.js",
"start": "node -r newrelic build",
"start:dev": "NODE_ENV=development LOG_LEVEL=debug babel-watch -L server",
"dev": "yarn start:dev",
"test": "yarn run test:lint && yarn run test:combined",
"test:lint": "eslint server src",
"test:flow": "flow check",
"test:combined": "NODE_ENV=test jest ./test",
"test:unit": "NODE_ENV=test jest ./test/unit",
"test:integration": "NODE_ENV=test jest ./test/integration",
"postinstall": "yarn run build"
},
"dependencies": {
"autoprefixer": "^8.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bluebird": "^3.4.1",
"cache-manager-redis": "^0.4.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"css-loader": "^0.28.11",
"debug": "^3.1.0",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"happypack": "^4.0.1",
"hull": "^0.14.0-beta.13",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"newrelic": "^4.0.0",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.4",
"progress-bar-webpack-plugin": "^1.11.0",
"promisepipe": "^2.1.3",
"react": "^16.3.2",
"react-hot-loader": "^4.0.1",
"rimraf": "^2.6.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"superagent": "^3.8.3",
"superagent-prefix": "^0.0.2",
"superagent-throttle": "^0.2.5",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.2",
"webpack-hot-middleware": "^2.22.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-jest": "^22.4.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-flowtype-errors": "^3.3.6",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.14.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.2",
"jest-plugin-context": "^2.9.0",
"nock": "^9.0.14",
"prettier": "^1.12.1"
}
}