-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "webpack-userscript-template",
"description": "Build your UserScript with webpack",
"version": "0.0.1",
"author": {
"name": "Trim21",
"email": "[email protected]"
},
"scripts": {
"format": "prettier -w ./",
"analize": "cross-env npm_config_report=true npm run build",
"build": "webpack --config config/webpack.config.prod.cjs",
"dev": "webpack --config config/webpack.config.dev.cjs",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/trim21/webpack-userscript-template"
},
"private": true,
"dependencies": {
"@trim21/gm-fetch": "^0.1.16",
"jquery": "^3.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write "
]
},
"devDependencies": {
"@types/greasemonkey": "^4.0.7",
"@types/jquery": "^3.5.32",
"@types/node": "^20.17.1",
"browserslist": "^4.24.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"husky": "^9.1.6",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"userscript-metadata-webpack-plugin": "^0.4.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.2.3"
}
}