-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.36 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.36 KB
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
{
"version": "4.3.1",
"description": "Thunderbird Conversations",
"note(description)": "This file is for build purposes only",
"repository": {
"type": "git",
"url": "git@github.com:thunderbird-conversations/thunderbird-conversations.git"
},
"bugs": {
"url": "https://github.com/thunderbird-conversations/thunderbird-conversations/issues"
},
"engines": {
"thunderbird": ">=128.0a1"
},
"private": true,
"type": "module",
"dependencies": {
"@reduxjs/toolkit": "2.8.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.2.0",
"redux": "5.0.1"
},
"devDependencies": {
"@microsoft/eslint-plugin-sdl": "1.1.0",
"@testing-library/react": "16.3.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/thunderbird-webext-browser": "127.0.0",
"eslint": "9.16.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-html": "8.1.3",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "50.8.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-mozilla": "4.2.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-react": "7.37.5",
"global-jsdom": "26.0.0",
"globals": "16.3.0",
"html-webpack-plugin": "5.6.3",
"jsdom": "26.1.0",
"prettier": "3.6.2",
"prop-types": "15.8.1",
"serve": "14.2.4",
"typescript": "5.8.3",
"web-ext": "8.9.0",
"webpack": "5.100.2",
"webpack-cli": "6.0.1"
},
"overrides": {
"path-to-regexp": "8.2.0",
"image-size": "2.0.2"
},
"scripts": {
"dev": "rm -rf ./dist-dev-html && (scripts/build-dev-html.sh --watch &) && sleep 4 && scripts/dev-html-serve.sh",
"build": "./scripts/build.sh",
"start": "web-ext run",
"prod": "./scripts/build.sh --prod",
"format": "prettier --write .",
"test": "npm run test:lint && npm run test:typescript && npm run test:format && npm run test:node",
"test:lint": "eslint .",
"test:format": "prettier --check .",
"test:typescript": "tsc",
"test:node": "NODE_OPTIONS='--import \"./addon/tests/setup.mjs\"' node --test",
"webextlint": "web-ext lint",
"preversion": "npm ci && npm test",
"version": "scripts/update-max-version.sh && scripts/update-version.sh",
"postversion": "npm run prod",
"maxversion": "scripts/update-max-version.sh"
},
"webExt": {
"sourceDir": "dist/"
},
"license": "MPL-2.0"
}