This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.36 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
{
"name": "TTV4TV",
"version": "1.4.0",
"twitchConfig": {
"clientId": "<client_id>",
"redirectUrl": "<redirect_url>"
},
"react-tv": {
"files": [
"static/index.html",
"static/style.css",
"static/build/bundle.js"
]
},
"scripts": {
"build": "webpack",
"build-dev": "NODE_ENV=development npm run build",
"build-dev-cygwin": "bash ./build-dev-cygwin.sh",
"build-prod": "./node_modules/.bin/cross-env NODE_ENV=production npm run build",
"jshint": "./node_modules/.bin/standard",
"react-tv-cli": "WEBOS_CLI_TV_VERSION=4.0.0 ./node_modules/.bin/react-tv-cli $@",
"react-tv-cli-init": "npm run react-tv-cli -- init",
"react-tv-cli-init-cygwin": "bash ./react-tv-init-cygwin.sh",
"react-tv-cli-webos": "npm run react-tv-cli -- run-webos",
"react-tv-cli-webos-cygwin": "bash ./react-tv-run-cygwin.sh",
"preinstall": "npm run submodules-update && npm run submodules-install",
"submodules-update": "bash ./update-modules.sh",
"submodules-install": "cd packages && bash ./install.sh",
"postinstall": "npm run build-prod",
"start-dev": "npm run build-dev && npm run react-tv-cli-init && npm run react-tv-cli-webos",
"start-dev-cygwin": "npm run build-dev-cygwin && npm run react-tv-cli-init-cygwin && npm run react-tv-cli-webos-cygwin",
"start-dev-server": "./node_modules/.bin/webpack-dev-server --progress --colors",
"start-webos": "npm run build-prod && npm run react-tv-cli -- run-webos $@",
"test": "echo \"No tests currently defined\""
},
"standard": {
"ignore": [
"build",
"packages"
],
"globals": [
"fetch",
"HTMLElement",
"localStorage",
"sessionStorage"
],
"parser": "babel-eslint"
},
"license": "MIT",
"dependencies": {
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-key-navigation": "file:packages/react-key-navigation",
"react-tv": "0.3.4",
"react-tv-cli": "^0.3.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.1",
"jest": "^23.6.0",
"standard": "^12.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^3.11.0"
}
}