-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "taylors-version",
"version": "0.1.0",
"description": "Updates your playlists to use the \"Taylor's version\" of a song where available",
"author": "Roshan Bhumbra",
"license": "GPL-3.0",
"private": true,
"main": "index.js",
"sideEffects": [
"./src/i18n.js"
],
"reactSnap": {
"source": "dist"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint \"**/*.js\""
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^8.1.0",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-react": "^7.19.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"webpack": "^5.31.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"axios-retry-after": "^1.0.2",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"clsx": "^1.1.1",
"i18next": "^19.4.3",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"query-string": "^6.14.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.5",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"use-deep-compare": "^1.1.0",
"uuid": "^8.3.2"
}
}