-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 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
{
"name": "plex-vr",
"version": "0.9.0",
"description": "Virtual Reality client for Plex Media Server",
"main": "lib/index.js",
"repository": "https://github.com/markbrouch/plex-vr.git",
"author": "Mark Brouch <mark.brouch@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "npm run clean-lib & npm run clean-dist",
"clean-lib": "rimraf lib",
"clean-dist": "rimraf dist",
"format": "prettier --single-quote true --semi false --write \"!(node_modules)/**/*.{js,jsx}\"",
"transpile": "npm run clean-lib && babel src --out-dir lib --copy-files",
"build": "webpack --progress --colors && npm run transpile",
"hot": "webpack-dev-server",
"server": "npm run transpile && node ./lib/server | ./node_modules/.bin/bunyan -o short",
"start": "npm run build && npm run server",
"precommit": "lint-staged",
"prepublish": "npm run build"
},
"dependencies": {
"aframe": "^0.5.0",
"aframe-react": "^4.2.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"bootstrap": "next",
"classnames": "^2.2.5",
"es6-promise": "^4.1.0",
"glamor": "^2.20.24",
"glamorous": "^3.13.3",
"koa": "^2.2.0",
"koa-bunyan-logger": "^2.0.0",
"koa-rewrite": "^2.1.0",
"koa-router": "next",
"koa-static": "^3.0.0",
"localforage": "^1.5.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-linkify": "^0.2.0",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-actions": "^2.0.2",
"redux-persist": "^4.8.0",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"ua-parser-js": "^0.7.12",
"uuid": "^3.0.1",
"whatwg-fetch": "^2.0.3",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bunyan": "^1.8.10",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.1",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.1",
"husky": "^0.13.3",
"imports-loader": "^0.7.1",
"lint-staged": "^3.4.1",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-url": "^6.0.4",
"prettier": "^1.3.0",
"redux-logger": "^3.0.1",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --single-quote true --semi false --write",
"git add"
]
}
}