-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
{
"name": "kitsu-plex-scrobbler",
"version": "1.0.1",
"description": "Update your Kitsu library from Plex",
"main": "src/index.js",
"scripts": {
"inotify": "cd /logs && /app/node_modules/inotify-proxy/bin/inotify-proxy ./PMS\\ Plugin\\ Logs > /dev/null",
"start-docker": "NODE_ENV=production knex migrate:latest && run-p start inotify",
"dev": "run-p server client",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"build": "webpack --mode production --display errors-only",
"start": "npm run build && NODE_ENV=production node src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewdias/kitsu-plex-scrobbler.git"
},
"author": "matthewdias",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewdias/kitsu-plex-scrobbler/issues"
},
"homepage": "https://github.com/matthewdias/kitsu-plex-scrobbler#readme",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@rgrove/parse-xml": "^1.1.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"client-oauth2": "^4.2.0",
"css-loader": "^1.0.1",
"express": "^4.16.3",
"express-history-api-fallback": "^2.2.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"isomorphic-unfetch": "^3.0.0",
"kitsu": "^5.1.0",
"knex": "^0.15.2",
"nodemon": "^1.18.5",
"npm-run-all": "^4.1.3",
"objection": "^1.3.0",
"pg": "^7.4.3",
"plex-api": "^5.2.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"react-toastify": "^4.4.0",
"style-loader": "^0.23.1",
"tail": "^1.2.3",
"untildify": "^3.0.2",
"url-loader": "^1.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}