-
-
Notifications
You must be signed in to change notification settings - Fork 601
/
package.json
135 lines (135 loc) · 3.58 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "sickchill",
"version": "2024.2.17",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/SickChill/SickChill.git"
},
"bugs": {
"url": "https://github.com/SickChill/SickChill/issues"
},
"homepage": "https://github.com/SickChill/SickChill#readme",
"scripts": {
"test": "xo --verbose && ava --verbose",
"security": "snyk test",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@popperjs/core": "^2.11.8",
"@webpack-cli/generators": "^3.0.7",
"ava": "^6.1.1",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.2",
"bower": "^1.8.14",
"browser-env": "^3.3.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-xo": "^0.44.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^51.0.1",
"grunt": "^1.6.1",
"grunt-bower-concat": "git+https://github.com/miigotu/grunt-bower-concat.git",
"grunt-bower-task": "^0.6.2",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-po2json": "git+https://github.com/rockykitamura/grunt-po2json.git",
"html-webpack-plugin": "^5.6.0",
"jquery": "^3.7.1",
"load-grunt-tasks": "^5.1.0",
"lodash": "^4.17.21",
"mem-fs": "^4.0.0",
"mem-fs-editor": "^11.0.0",
"mini-css-extract-plugin": "^2.8.0",
"sass": "^1.71.0",
"sass-loader": "^14.1.0",
"snyk": "^1.1280.0",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"toml": "^3.0.0",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"workbox-webpack-plugin": "^7.0.0",
"xo": "^0.57.0",
"yarn-minify": "^1.0.1",
"yarn-upgrade-all": "^0.7.2"
},
"ava": {
"require": [
"./tests/js/helpers/setup-browser-env.js"
],
"files": [
"tests/js/**/*.js",
"!tests/js/helpers/setup-browser-env.js"
],
"source": [
"sickchill/gui/slick/js/**/*.{js,jsx}",
"!dist/**/*",
"!lib/**/*",
"!**/*.min.js"
]
},
"stylelint": {
"extends": "stylelint-config-idiomatic-order"
},
"xo": {
"space": 4,
"rules": {
"unicorn/filename-case": "off",
"unicorn/prefer-node-append": "off"
},
"esnext": true,
"envs": [
"browser"
],
"globals": [
"_",
"scRoot",
"jQuery",
"$",
"metaToBool",
"getMeta",
"PNotify",
"themeSpinner",
"anonURL",
"Gettext",
"gt",
"_n",
"latinize"
],
"ignores": [
"core.min.js",
"vendor.min.js",
"lib/**/*",
"Gruntfile.js",
"sickchill/gui/slick/js/lib/*",
"tests/js/index.js",
"frontend/static/*",
"frontend/movies/static/",
"frontend/shows/static/",
"frontend/config/static/",
"webpack.config.js"
]
}
}