generated from pavle-goloskokovic/webpack5-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "yt-fullscreen",
"version": "0.1.0",
"description": "YouTube Fullscreen",
"main": "src/ts/index.ts",
"scripts": {
"start": "webpack-dev-server",
"build:dev": "webpack",
"build:prod": "webpack --config webpack.config.prod.ts",
"eslint": "eslint **/*.ts",
"eslint:fix": "eslint --fix **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavle-goloskokovic/yt-fullscreen.git"
},
"keywords": [
"youtube",
"youtube-api",
"fullscreen",
"full-screen"
],
"author": "Pavle Goloskoković",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavle-goloskokovic/yt-fullscreen/issues"
},
"homepage": "https://github.com/pavle-goloskokovic/yt-fullscreen#readme",
"devDependencies": {
"@types/youtube": "^0.0.50",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"ejs-compiled-loader": "^3.1.0",
"eslint": "^8.57.0",
"eslint-plugin-brace-rules": "^0.1.6",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"url-search-params-polyfill": "^8.2.5"
}
}