-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.17 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
{
"name": "youtube-player",
"version": "1.0.10",
"description": "An audio player for YouTube videos",
"repository": {
"type": "git",
"url": "[email protected]:nico-martin/yt-audio.git"
},
"author": "Nico Martin",
"license": "GPL-3.0+",
"scripts": {
"start": "npm run dev",
"dev": "npm run serve:dev && npm run build:dev",
"prod": "npm run build:prod",
"build:dev": "set NODE_ENV=development && webpack --config webpack.config.js -d source-map --watch",
"serve:dev": "set NODE_ENV=development && webpack serve --config webpack.config.js",
"build:prod": "set NODE_ENV=production && webpack"
},
"dependencies": {
"classnames": "^2.3.2",
"idb": "^7.1.1",
"moment": "^2.29.4",
"preact": "^10.11.3",
"react-helmet": "^6.1.0",
"react-intl": "^6.2.7",
"react-router-dom": "^5.2.0",
"unistore": "^3.5.2"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/react": "^18.0.27",
"@types/web-bluetooth": "^0.0.16",
"autoprefixer": "^10.4.13",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"path": "^0.12.7",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.6.2",
"robotstxt-webpack-plugin": "^8.0.0",
"sitemap-webpack-plugin": "^1.1.1",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.5.4"
},
"browserslist": [
"> 1%",
"IE 11"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"^@app/(.*)$",
"^@common/(.*)$",
"^@global/(.*)$",
"(.css)$",
"^[./]"
]
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}