-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.79 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
55
56
{
"name": "TwitchTOS",
"version": "1.0.2",
"description": "An extension that helps you find out if the video you're watching is against Twitch terms of service or not, and lets you approve or report videos as Twitch TOS.",
"repository": "git@github.com:Pentalex/TwitchTOS.git",
"author": "Pentalex",
"license": "MIT",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"fix": "eslint --ignore-path .gitignore . --fix && stylelint 'src/css/*.css' --fix"
},
"dependencies": {
"@popperjs/core": "^2.5.4",
"@sweetalert2/themes": "^4.0.1",
"bootstrap": "^4.1.3",
"bootswatch": "^4.5.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"sweetalert2": "^10.11.0",
"tippy.js": "^6.2.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"fs-extra": "^9.0.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-alpha.7",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"style-loader": "^2.0.0",
"stylelint": ">=10.1.0",
"stylelint-config-standard": "^20.0.0",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0"
},
"lint-staged": {
"src/js/*.js": "eslint . --ignore-path .gitignore --fix",
"src/css/*.css": "stylelint --fix"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}