-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "organizr-plex-theme",
"version": "3.0.0",
"description": "A theme for Organizr v2 that emulates the style of Plex",
"main": "css/Plex.css",
"homepage": "https://burry.dev/Organizr-Plex-Theme",
"repository": "github:Burry/Organizr-Plex-Theme",
"contributors": [
"Grant Burry <grant@burry.me> (https://grantburry.com)",
"jigahertz (https://github.com/jigahertz)"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "gulp build",
"watch": "gulp build-watch",
"serve": "gulp build-watch-serve",
"start": "gulp build-watch-serve",
"imagemin": "gulp imagemin"
},
"husky": {
"pre-commit": "lint-staged"
},
"engines": {
"node": ">=8"
},
"lint-staged": {
"ignore": [
"package.json",
"**/**/*.test.*"
],
"linters": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix --rule 'import/no-extraneous-dependencies: off'",
"git add --force"
],
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{css,less,scss,sass,sss,styl}": [
"stylelint --fix",
"git add --force"
]
}
},
"dependencies": {
"autoprefixer": "^9.6.0",
"browser-sync": "^2.26.7",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-flowtype": "^3.10.3",
"gulp": "gulpjs/gulp#2a84429",
"gulp-clean-css": "^4.2.0",
"gulp-crass": "^0.2.2",
"gulp-css-svg": "^1.3.1",
"gulp-header-comment": "^0.6.1",
"gulp-imagemin": "^6.0.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-stylelint": "^9.0.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0",
"stylelint-scss": "^3.8.0"
}
}