-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 2.86 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@rweich/userscript-template",
"version": "0.0.0-development",
"description": "Template for userscript development.",
"private": "true",
"author": "rweich",
"license": "MIT",
"scripts": {
"build": "webpack --mode=development",
"build-prod": "yarn clean && webpack --mode=production",
"ci": "yarn type-check && yarn lint",
"clean": "rimraf ./dist/*",
"lint": "eslint 'src/**/*.ts' 'src/**/*.vue'",
"lint-tests": "eslint test/**/*.ts",
"prepare": "husky install",
"type-check": "tsc --noEmit",
"update-template": "update-template https://github.com/rweich/userscript-template",
"watch": "webpack watch --mode=development"
},
"dependencies": {
"axios": "^0.25.0",
"axios-userscript-adapter": "^0.1.8",
"css-loader": "^6.5.1",
"deepmerge": "^4.2.2",
"eventemitter3": "^4.0.7",
"localstory": "^0.9.1",
"loglevel": "^1.8.0",
"loglevel-plugin-prefix": "^0.8.4",
"primeflex": "^2.0.0",
"primevue": "^2.0.0",
"rimraf": "^3.0.2",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.2",
"ts-log": "^2.2.4",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"vue": "^2.7.0",
"vue-class-component": "^7.2.6",
"vue-loader": "^15.10",
"vue-style-loader": "^4.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1",
"webpack-userscript": "^2.5.8"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rweich/eslint-config": "^2.0.1",
"@rweich/prettier-config": "^2.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/greasemonkey": "^4.0.1",
"@types/node": "^17.0.10",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.0",
"semantic-release": "^19.0.3",
"ts-node": "^10.4.0",
"update-template": "^1.3.1"
},
"engines": {
"node": ">=14.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rweich/userscript-template.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": [
"@rweich",
"plugin:vue/recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"extraFileExtensions": [
".vue"
]
},
"rules": {
"vue/singleline-html-element-content-newline": 0,
"vue/max-attributes-per-line": [
"error",
{
"singleline": {
"max": 10
},
"multiline": {
"max": 1
}
}
]
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"prettier": "@rweich/prettier-config"
}