forked from honestbleeps/Reddit-Enhancement-Suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.18 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
{
"title": "Reddit Enhancement Suite",
"name": "reddit-enhancement-suite",
"version": "5.22.17",
"description": "A suite of modules that enhance your Reddit browsing experience",
"author": "Reddit Enhancement Suite contributors",
"license": "GPL-3.0",
"private": true,
"homepage": "https://redditenhancementsuite.com",
"repository": {
"type": "git",
"url": "https://github.com/honestbleeps/Reddit-Enhancement-Suite.git",
"username": "honestbleeps",
"repository": "Reddit-Enhancement-Suite"
},
"scripts": {
"preinstall": "node -v",
"prestart": "rimraf dist",
"start": "webpack --watch --progress --mode development",
"preonce": "rimraf dist",
"once": "webpack --progress --mode development",
"prebuild": "rimraf dist",
"build": "webpack --progress --mode production --env zip",
"autoi18n": "jscodeshift --parser flow --transform build/i18nTransformer.js",
"postautoi18n": "eslint --fix lib/modules/*.js",
"eslint": "eslint .",
"stylelint": "stylelint lib/**/*.scss",
"i18n-lint": "node build/i18nLint.js",
"lint": "yarn eslint && yarn stylelint && yarn i18n-lint",
"lint-fix": "eslint . --fix; stylelint lib/**/*.scss --fix;",
"flow": "flow",
"test": "cross-env NODE_ENV=test ava",
"integration-only": "nightwatch --env",
"preintegration": "yarn build --env browsers=chrome,firefox",
"integration": "yarn integration-only",
"deploy": "node build/deploy.js",
"deploy-changelog": "node build/deployChangelog.js",
"version": "node build/version.js"
},
"nyc": {
"all": true,
"exclude": [
"dist",
"lib/vendor",
"**/__tests__"
],
"require": [
"@babel/register"
]
},
"browserslist": [
"chrome 83",
"firefox 78"
],
"dependencies": {
"dashjs": "4.4.1",
"dayjs": "1.11.5",
"dompurify": "2.4.0",
"fast-levenshtein": "3.0.0",
"favico.js": "0.3.10",
"jquery": "3.6.1",
"lodash-es": "4.17.21",
"snudown-js": "4.0.0",
"sortablejs": "1.15.0",
"suncalc": "1.9.0",
"tinycolor2": "1.4.2"
},
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/eslint-parser": "7.18.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-flow-strip-types": "7.19.0",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"@babel/register": "7.18.9",
"autoprefixer": "10.4.9",
"ava": "3.15.0",
"babel-loader": "8.2.5",
"babel-plugin-minify-dead-code-elimination": "0.5.2",
"babel-plugin-transform-define": "2.0.1",
"chrome-extension-deploy": "3.0.0",
"cross-env": "7.0.3",
"css-loader": "5.2.7",
"eslint": "8.23.1",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-ava": "13.2.0",
"eslint-plugin-dollar-sign": "1.0.2",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-no-useless-assign": "1.0.3",
"eslint-plugin-prefer-spread": "1.0.3",
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
"esm": "3.2.25",
"exec-loader": "4.0.0",
"extricate-loader": "3.0.0",
"file-loader": "6.2.0",
"firefox-extension-deploy": "1.1.2",
"flow-bin": "0.84.0",
"html-loader": "0.5.5",
"inert-entry-webpack-plugin": "4.0.2",
"interpolate-loader": "2.0.1",
"jscodeshift": "0.13.1",
"jszip": "2.7.0",
"nightwatch": "1.7.13",
"nyc": "15.1.0",
"postcss": "8.4.16",
"postcss-loader": "4.3.0",
"prop-loader": "1.0.0",
"rimraf": "3.0.2",
"sass": "1.54.9",
"sass-loader": "10.3.1",
"semver": "7.3.7",
"sibling-loader": "1.2.0",
"spawn-loader": "7.0.2",
"stylelint": "14.11.0",
"stylelint-config-recommended": "9.0.0",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "28.0.0",
"stylelint-config-standard-scss": "5.0.0",
"stylelint-scss": "4.3.0",
"url-loader": "4.1.1",
"webpack": "4.46.0",
"webpack-cli": "4.10.0",
"webpack-sources": "3.2.3",
"zip-webpack-plugin": "4.0.1"
}
}