-
-
Notifications
You must be signed in to change notification settings - Fork 878
/
package.json
97 lines (97 loc) · 3.32 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
{
"title": "Reddit Enhancement Suite",
"name": "reddit-enhancement-suite",
"version": "5.24.7",
"description": "A suite of modules that enhance your Reddit browsing experience",
"author": "Reddit Enhancement Suite contributors",
"license": "GPL-3.0",
"private": true,
"type": "module",
"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": "node build.js --watch --mode development",
"preonce": "rimraf dist",
"once": "node build.js --mode development",
"prebuild": "rimraf dist",
"build": "node build.js --mode production --zip",
"autoi18n": "jscodeshift --parser flow --transform build/i18nTransformer.cjs",
"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": "rimraf dist/transpiled && flow-remove-types lib -q --out-dir dist/transpiled && cross-env NODE_ENV=test ava",
"integration-only": "nightwatch --env",
"preintegration": "yarn build --browsers chrome,firefox",
"integration": "yarn integration-only",
"deploy": "node build/deploy.js",
"deploy-changelog": "node build/deployChangelog.js",
"version": "node build/version.js"
},
"browserslist": [
"chrome 114",
"firefox 119"
],
"dependencies": {
"dashjs": "4.7.4",
"dayjs": "1.11.13",
"dompurify": "3.1.6",
"fast-levenshtein": "3.0.0",
"favico.js": "0.3.10",
"jquery": "3.7.1",
"lodash-es": "4.17.21",
"snudown-js": "4.0.1",
"sortablejs": "1.15.3",
"suncalc": "1.9.0",
"tinycolor2": "1.6.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-syntax-flow": "7.24.7",
"@babel/plugin-syntax-import-attributes": "7.25.6",
"@babel/plugin-transform-flow-strip-types": "7.25.2",
"@babel/register": "7.24.6",
"ava": "6.1.3",
"chrome-extension-deploy": "3.0.0",
"commander": "12.1.0",
"cross-env": "7.0.3",
"esbuild": "0.23.1",
"esbuild-plugin-copy": "2.1.1",
"esbuild-sass-plugin": "3.3.1",
"eslint": "8.57.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-dollar-sign": "1.0.2",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-no-useless-assign": "1.0.3",
"eslint-plugin-prefer-spread": "1.0.3",
"eslint-plugin-you-dont-need-lodash-underscore": "6.14.0",
"firefox-extension-deploy": "1.1.2",
"flow-bin": "0.84.0",
"flow-remove-types": "2.246.0",
"jscodeshift": "17.0.0",
"jszip": "3.10.1",
"nightwatch": "1.7.13",
"postcss": "8.4.45",
"rimraf": "6.0.1",
"semver": "7.6.3",
"stylelint": "16.6.1",
"stylelint-config-recommended": "14.0.1",
"stylelint-config-sass-guidelines": "11.1.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-scss": "6.3.2"
}
}