-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "webpack-userscript-template",
"version": "0.0.1",
"description": "webpack-userscript-template",
"homepage": "https://crashmax-dev.github.io/webpack-userscript-template/",
"scripts": {
"dev": "webpack server --node-env development",
"build": "webpack --node-env production --progress",
"format": "prettier --write --ignore-unknown src"
},
"author": {
"name": "Vitalij Ryndin",
"email": "[email protected]",
"url": "https://crashmax.ru"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/webpack-userscript-template.git"
},
"dependencies": {
"redom": "^3.29.0",
"sass": "^1.54.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@crashmax/prettier-config": "^2.0.3",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/tampermonkey": "^4.0.5",
"@types/terser-webpack-plugin": "^4.2.2",
"@types/webpack": "^4.41.32",
"@types/webpack-dev-server": "^3.11.6",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.2.7",
"sass-loader": "^10.2.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"typed-emitter": "^2.1.0",
"typescript": "^4.7.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^3.11.3",
"webpack-userscript": "^2.5.8"
}
}