forked from trakt-tools/universal-trakt-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "universal-trakt-scrobbler",
"version": "0.3.1",
"description": "A universal sync for Trakt.tv.",
"author": "trakt-tools",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/trakt-tools/universal-trakt-scrobbler.git"
},
"scripts": {
"build": "cross-env ENV=production webpack --env production",
"build-dev": "cross-env ENV=development webpack --env development",
"start": "webpack --env development --env watch",
"prettier": "prettier \"**/*.{js,jsx,ts,tsx}\"",
"format-check": "npm run prettier -- --check",
"format": "npm run prettier -- --write",
"prettier-other": "prettier \"**/*.{json,css,html,md,yml,yaml}\"",
"format-check-other": "npm run prettier-other -- --check",
"format-other": "npm run prettier-other -- --write",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint-check": "npm run eslint -- --quiet",
"lint-all": "npm run eslint -- --fix",
"lint": "npm run lint-all -- --quiet",
"lint-check-typed": "cross-env ESLINT_TYPED=true npm run lint-check",
"lint-all-typed": "cross-env ESLINT_TYPED=true npm run lint-all",
"lint-typed": "cross-env ESLINT_TYPED=true npm run lint",
"tsc": "tsc --noEmit",
"check": "run-s format-check-other tsc lint-check-typed",
"fix": "run-s format-other tsc lint-typed",
"prepare": "husky install"
},
"@comment dependencies": {
"history": "Do not update to v5 while using react-router-dom v5"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.16",
"@mui/system": "^5.10.16",
"@mui/x-date-pickers": "^5.0.9",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"history": "^4.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"react-window-infinite-loader": "^1.0.8",
"rollbar": "^2.26.0",
"type-fest": "^3.3.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.6",
"@octokit/rest": "^19.0.5",
"@trakt-tools/cli": "^0.3.3",
"@types/archiver": "^5.3.1",
"@types/circular-dependency-plugin": "^5.0.5",
"@types/dotenv-webpack": "^7.0.3",
"@types/fs-extra": "^9.0.13",
"@types/history": "^4.7.9",
"@types/node": "^18.11.10",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.9",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@types/webextension-polyfill": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"archiver": "^5.3.1",
"babel-loader": "^9.1.0",
"babel-preset-minify": "^0.5.2",
"circular-dependency-plugin": "^5.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mui": "^0.1.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"fs-extra": "^11.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
}
}