-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
107 lines (107 loc) · 3.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
{
"name": "mb-userscripts",
"version": "1.0.0",
"description": "Build package for MB userscripts",
"scripts": {
"build": "NODE_ENV=production tsx build/build.ts",
"build-dev": "tsx build/build.ts",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsx build/check-tsconfig.ts && tsc -b",
"deploy": "NODE_ENV=production tsx build/deploy.ts",
"test": "NODE_NO_WARNINGS=1 jest --coverage",
"generate-readme": "tsx build/generate-readme.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ROpdebee/mb-userscripts.git"
},
"author": "ROpdebee",
"license": "MIT; https://opensource.org/licenses/MIT",
"bugs": {
"url": "https://github.com/ROpdebee/mb-userscripts/issues"
},
"homepage": "https://github.com/ROpdebee/mb-userscripts#readme",
"private": true,
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/plugin-syntax-jsx": "7.23.3",
"@babel/plugin-transform-runtime": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@pollyjs/adapter-fetch": "6.0.6",
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister": "6.0.6",
"@pollyjs/utils": "6.0.6",
"@rollup/plugin-alias": "5.1.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-virtual": "3.0.2",
"@rollup/pluginutils": "5.1.0",
"@stylistic/eslint-plugin": "1.5.4",
"@types/babel__core": "7.20.5",
"@types/confusing-browser-globals": "1.0.3",
"@types/conventional-commits-parser": "5.0.0",
"@types/glob": "8.1.0",
"@types/greasemonkey": "4.0.7",
"@types/jest": "29.5.12",
"@types/jest-when": "3.5.5",
"@types/postcss-preset-env": "7.7.0",
"@types/rollup__plugin-virtual": "2.0.4",
"@types/rollup-plugin-progress": "1.1.4",
"@types/setup-polly-jest": "0.5.5",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"confusing-browser-globals": "1.0.11",
"conventional-commits-parser": "5.0.0",
"core-js": "3.35.1",
"eslint": "8.56.0",
"eslint-plugin-array-func": "4.0.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-jest-async": "1.0.3",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-no-constructor-bind": "2.0.4",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-no-use-extend-native": "0.5.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unicorn": "50.0.1",
"fake-indexeddb": "5.0.2",
"glob": "10.3.10",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2",
"jest-html-reporters": "3.1.7",
"jest-when": "3.6.0",
"license-checker": "25.0.1",
"nativejsx": "github:ROpdebee/nativejsx",
"node-fetch": "3.3.2",
"postcss": "8.4.33",
"postcss-preset-env": "9.3.0",
"rollup": "4.22.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-progress": "1.1.2",
"sass": "1.70.0",
"setup-polly-jest": "0.11.0",
"simple-git": "3.22.0",
"terser": "5.27.0",
"ts-dedent": "2.2.0",
"ts-jest": "29.1.2",
"tsx": "4.7.0",
"type-fest": "4.10.2",
"typescript": "5.3.3",
"warcio": "2.2.1"
},
"dependencies": {
"idb": "8.0.0",
"p-retry": "6.2.0",
"p-throttle": "6.1.0",
"ts-custom-error": "3.3.1"
}
}