-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
{
"name": "tvlab-humax-bali",
"version": "0.1.0",
"description": "Bandwidth management service for Humax HaIP",
"main": "index.js",
"license": "Proprietary",
"private": true,
"author": "Humax Core Team",
"scripts": {
"tag:patch": "npm version patch -m 'TAG - %s'",
"tag:minor": "npm version patch -m 'TAG - %s",
"wp:version": "bash create_versionfile.sh",
"clean": "rm -rf ./public ./node_modules",
"start": "node ./dist/index.bundle.js",
"build": "webpack -p --config webpack.config.js --display-error-details",
"wp": "npm run wp:build && npm run start --production",
"flow": "flow check",
"development": "nodemon --exec babel-node -- ./src/index.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/YouSee/tvlab-humax-bali.git"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"@koa/cors": "^2.2.2",
"babel-polyfill": "^6.26.0",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.0.0",
"koa-joi-router": "^5.1.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-sslify": "^2.1.2",
"lodash": "^4.17.11",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"spdy": "^3.4.7"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"flow-bin": "^0.82.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}