This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 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
{
"name": "so-userscripts",
"author": "Martijn Pieters",
"license": "MIT",
"repository": "git+https://github.com/mjpieters/SO-userscripts.git",
"bugs": {
"url": "https://github.com/mjpieters/SO-userscripts/issues"
},
"homepage": "https://github.com/mjpieters/SO-userscripts",
"private": true,
"workspaces": [
"scripts/bookmark-users",
"scripts/connected-users"
],
"scripts": {
"build": "webpack --mode=production",
"build:dev": "npx webpack --watch --mode=development",
"lint": "concurrently \"eslint --cache .\" \"tsc --noEmit --skipLibCheck --pretty --incremental\"",
"release": "semantic-release",
"serve": "webpack serve --mode=development --no-web-socket-server",
"postinstall": "is-ci || husky install",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^18.6.0",
"@hotwired/stimulus": "^3.2.1",
"@jest/globals": "^29.7.0",
"@semantic-release/exec": "semantic-release/exec",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^9.3.4",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.17",
"@types/semantic-release": "^20.0.6",
"@types/ssri": "^7.1.5",
"@types/tampermonkey": "^5.0.2",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@userscripters/stackexchange-global-types": "^2.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"glob": "^10.3.10",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.2",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"semantic-release": "^22.0.12",
"swc-loader": "^0.2.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.1.6",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0",
"webpack-userscript": "^3.2.2"
},
"packageManager": "[email protected]"
}