-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "webpack-userscript-template",
"description": "Build your UserScript with webpack",
"version": "0.0.1",
"author": {
"name": "Trim21",
"email": "trim21me@gmail.com"
},
"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.3.0",
"jquery": "^4.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write "
]
},
"devDependencies": {
"@types/greasemonkey": "^4.0.7",
"@types/jquery": "^4.0.0",
"@types/node": "^22.17.0",
"browserslist": "^4.28.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"husky": "^9.1.7",
"less": "^4.6.4",
"less-loader": "^12.3.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"userscript-metadata-webpack-plugin": "^0.4.2",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^7.0.0",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.3.4"
}
}