-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.8 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.8 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "plex-requests",
"version": "2.6.0",
"repository": {
"type": "git",
"url": "https://github.com/opanitch/plex-requests.git"
},
"description": "Front-end UI to allow users to submit information to a searchable, sortable database with checks for duplicates",
"license": "ISC",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"cleaninstall": "rm -rf node_modules/ && rm package-lock.json && npm cache clean --force && npm i",
"eslint-check": "eslint '**/*.{ts,tsx,js}' --no-error-on-unmatched-pattern",
"eslint-fix": "eslint '**/*.{ts,tsx,js}' --no-error-on-unmatched-pattern --fix",
"lint-check": "npm run eslint-check && npm run stylelint-check && npm run prettier-check",
"lint-fix": "npm run eslint-fix && npm run stylelint-fix && npm run prettier-fix",
"prettier-check": "prettier . --check",
"prettier-fix": "prettier . --write",
"start": "cross-env NODE_ENV=development webpack serve --config ./webpack.config.js",
"stylelint-check": "stylelint '**/*.{css,scss}' --allow-empty-input",
"stylelint-fix": "stylelint '**/*.{css,scss}' --allow-empty-input --fix",
"update": "npm ci",
"update:deps": "rm -rf node_modules/ && npm cache clean --force && npm i"
},
"author": "Oren Panitch, Jake Barufkin, Mark Baskin",
"browserslist": [
"defaults",
"not IE 11",
"not dead"
],
"dependencies": {
"axios": "^0.24.0",
"classnames": "^2.3.1",
"i18next": "^21.6.6",
"i18next-browser-languagedetector": "^6.1.2",
"lodash": "^4.17.21",
"plex-api": "^5.3.2",
"plex-wrapper": "^1.1.3",
"react": "^17.0.1",
"react-base-table": "^1.13.0",
"react-dom": "^17.0.1",
"react-i18next": "^11.15.3",
"react-router-dom": "^5.2.0",
"zustand": "^3.6.9"
},
"devDependencies": {
"@svgr/webpack": "^6.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/react-test-renderer": "^17.0.1",
"@types/testing-library__jest-dom": "^5.14.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"browserslist-useragent-regexp": "^3.0.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.2",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-loader": "^2.1.1",
"html-webpack-plugin": "^5.2.0",
"https-browserify": "^1.0.0",
"jest": "^27.4.7",
"node-sass": "^7.0.1",
"os-browserify": "^0.3.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-sh": "^0.8.1",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"request": "^2.88.2",
"sass-loader": "^11.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^2.0.0",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"url": "^0.11.0",
"util": "^0.12.4",
"uuid": "^8.3.2",
"webpack": "^5.24.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.3",
"webpack-md5-hash": "0.0.6",
"webpack-virtual-modules": "^0.4.2",
"webpackbar": "^5.0.2"
}
}