forked from schulzetenberg/watchlist
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.68 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
{
"name": "watchlist",
"version": "1.0.0",
"description": "Checks the availability of movies and shows from your Trakt.tv watchlist on Netflix and Prime Video.",
"main": "index.js",
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build-ui": "DISABLE_ESLINT_PLUGIN=true vite build frontend --outDir ../build --emptyOutDir",
"start": "pnpm exec sequelize-cli db:migrate && node index.js",
"dev": "pnpm exec sequelize-cli db:migrate && nodemon --legacy-watch index.js",
"start-dev": "DEBUG=watchlist:* BROWSER=none REACT_DEV_SERVER=true TUNNEL=true WATCH=true pnpm run start",
"migrate": "pnpm exec sequelize-cli db:migrate",
"lint": "pnpm exec eslint migrations/**/*.js api/**/*.js models/**/*.js receiver/**/*.js index.js",
"test": "jest",
"streaming:manifest": "node scripts/gen-streaming-manifest.js"
},
"dependencies": {
"@devicefarmer/adbkit": "^3.3.8",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.10",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@ngrok/ngrok": "^1.7.0",
"@sentry/node": "^10.63.0",
"@tanstack/react-query": "^5.101.2",
"@vitejs/plugin-react": "^6.0.3",
"axios": "^1.18.1",
"body-parser": "^2.3.0",
"connect-ensure-login": "^0.1.1",
"connect-session-sequelize": "^8.0.6",
"cors": "^2.8.6",
"csv-parser": "^3.2.1",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-session": "^1.19.0",
"node-singleflight": "^0.1.2",
"passport": "^0.7.0",
"passport-access-token": "^1.0.3",
"passport-trakt": "^1.0.4",
"promise-streams": "^2.1.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.7",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"react-router-dom": "^7.18.1",
"react-swipeable": "^7.0.2",
"sequelize": "^6.37.8",
"sequelize-cli": "^6.6.5",
"sqlite3": "^6.0.1",
"streaming-availability": "^4.5.0",
"trakt.tv": "^8.2.0",
"trakt.tv-images": "^5.2.0",
"trakt.tv-queued": "^3.0.0",
"vite": "^8.1.3",
"vite-express": "^0.22.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"dotenv-cli": "^11.0.0",
"eslint": "^10.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"jest": "^30.4.2",
"nodemon": "^3.1.14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}