forked from rafaelgomesxyz/esgst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 4.57 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
{
"name": "esgst",
"version": "8.10.3",
"betaVersion": "8.10.3",
"title": "Enhanced SteamGifts & SteamTrades (ESGST Potatoe edition)",
"description": "A script that adds some cool features to SteamGifts and SteamTrades.",
"author": "rafaelgomesxyz",
"homepage": "https://github.com/SquishedPotatoe/esgst",
"bugs": {
"url": "https://github.com/SquishedPotatoe/esgst/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SquishedPotatoe/esgst.git"
},
"scripts": {
"build": "webpack --env.production",
"build-dev": "webpack --env.development",
"start": "webpack --env.development --env.withWatch",
"build-webextension": "webpack --env.production --config-name webextension",
"build-dev-webextension": "webpack --env.development --config-name webextension",
"start-webextension": "webpack --env.development --env.withWatch --config-name webextension",
"build-userscript": "webpack --env.production --config-name userscript",
"build-dev-userscript": "webpack --env.development --config-name userscript",
"start-userscript": "webpack --env.development --env.withWatch --config-name userscript",
"generate-release": "node ./scripts/generateRelease.js",
"notify-issue": "node ./scripts/notifyIssue.js",
"update-emojis": "node ./scripts/updateEmojis.js",
"prettier": "prettier '**/*.{js,jsx,ts,tsx}'",
"format-check": "npm run prettier -- --check",
"format": "npm run prettier -- --write",
"prettier-other": "prettier '**/*.{json,css,html,md,yml,yaml}'",
"format-check-other": "npm run prettier-other -- --check",
"format-other": "npm run prettier-other -- --write",
"eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint-check": "npm run eslint -- --quiet",
"lint-all": "npm run eslint -- --fix",
"lint": "npm run lint-all -- --quiet",
"lint-check-typed": "npm run lint-check -- -c ./.eslintrc.typed.js --no-eslintrc",
"lint-all-typed": "npm run lint-all -- -c ./.eslintrc.typed.js --no-eslintrc",
"lint-typed": "npm run lint -- -c ./.eslintrc.typed.js --no-eslintrc",
"tsc": "tsc --noEmit",
"check": "run-s format-check-other tsc lint-check-typed",
"fix": "run-s format-other tsc lint-typed",
"test": "cross-env NODE_ENV=test karma start"
},
"@comment dependencies": {
"interactjs": "Any version higher than 1.3.4 breaks filters",
"jquery": "3.5.1 is breaking filters",
"jszip": "Any version higher than 3.3.0 breaks the extension on Pale Moon"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"awesome-bootstrap-checkbox": "^0.3.7",
"bootstrap": "^3.4.1",
"core-js": "^3.6.5",
"date-fns": "^2.15.0",
"emojis-utils": "^1.0.2",
"interactjs": "1.3.4",
"intersection-observer-polyfill": "^0.1.0",
"jQuery-QueryBuilder": "^2.5.2",
"jquery": "3.5.0",
"jquery-ui": "^1.12.1",
"jszip": "3.2.2",
"simple-vdf": "^1.1.1",
"uuid": "^8.3.2",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@octokit/rest": "^16.43.2",
"@types/chai": "^4.2.11",
"@types/greasemonkey": "^4.0.0",
"@types/jquery": "^3.5.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@types/sinon": "^9.0.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"calfinated": "^1.4.1",
"chai": "^4.2.0",
"circular-dependency-plugin": "^5.2.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"html-loader": "^1.1.0",
"jpm": "^1.3.1",
"karma": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^8.0.1",
"node": "^12.18.2",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"progress-bar-webpack-plugin": "^1.12.1",
"sinon": "^9.0.2",
"sinon-chrome": "^3.0.1",
"style-loader": "^1.2.1",
"typescript": "^3.9.7",
"web-ext-types": "^3.2.1",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
},
"keywords": [
"esgst",
"steamgifts",
"steamtrades"
],
"license": "SEE LICENSE IN LICENSE"
}