forked from SickChill/sickchill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.37 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
{
"name": "sickchill",
"version": "4.0.72",
"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.19.3",
"@babel/preset-env": "^7.19.4",
"@popperjs/core": "^2.11.6",
"@webpack-cli/generators": "^3.0.0",
"ava": "^5.0.1",
"babel-loader": "^9.0.0",
"bootstrap": "^5.2.2",
"bower": "^1.8.13",
"browser-env": "^3.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.9.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^45.0.0",
"esm": "^3.2.25",
"grunt": "^1.5.2",
"grunt-bower-concat": "git+https://github.com/miigotu/grunt-bower-concat.git",
"grunt-bower-task": "^0.6.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-po2json": "git+https://github.com/rockykitamura/grunt-po2json.git",
"html-webpack-plugin": "^5.5.0",
"jquery": "^3.2.1",
"load-grunt-tasks": "^5.1.0",
"lodash": "^4.17.15",
"mem-fs": "^2.2.1",
"mem-fs-editor": "^9.5.0",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"snyk": "^1.1043.0",
"style-loader": "^3.3.1",
"toml": "^3.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4",
"xo": "^0.53.1",
"yarn-minify": "^1.0.1"
},
"ava": {
"require": [
"esm",
"./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"
]
},
"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/*",
"webpack.config.js"
]
}
}