-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
80
81
82
83
84
{
"name": "tampermonkey-scripts",
"version": "1.0.0",
"description": "TampermonkeyScripts",
"scripts": {
"serve": "webpack serve --mode=development",
"dev": "webpack --mode=development --watch --progress",
"build": "webpack --mode=production --progress",
"predeploy": "npm run build",
"deploy": "gh-pages -d ./dist",
"lint": "eslint ./ --ext .js,.ts,.tsx",
"stylelint": "stylelint **/*.scss",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakura-flutter/tampermonkey-scripts.git"
},
"keywords": [
"tampermonkey"
],
"author": "sakura-flutter",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sakura-flutter/tampermonkey-scripts/issues"
},
"homepage": "https://github.com/sakura-flutter/tampermonkey-scripts#readme",
"dependencies": {
"core-js": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/crypto-js": "^4.1.1",
"@types/jquery": "^3.5.14",
"@types/tampermonkey": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-js": "^4.1.1",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.3.0",
"eslint-webpack-plugin": "^3.2.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-loader": "^7.0.1",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"semver": "^7.3.7",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-webpack-plugin": "^3.3.0",
"terser-webpack-plugin": "^5.3.3",
"typescript": "^4.7.4",
"viewerjs": "^1.10.5",
"vue": "^3.2.37",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint"
],
"*.{scss}": [
"npm run stylelint"
]
}
}