-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 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
{
"version": "4.2.3",
"description": "Thunderbird Conversations",
"note(description)": "This file is for build purposes only",
"repository": {
"type": "git",
"url": "[email protected]: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.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"redux": "5.0.1"
},
"devDependencies": {
"@microsoft/eslint-plugin-sdl": "1.0.0",
"@testing-library/react": "16.0.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-mozilla": "4.0.0",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-react": "7.37.2",
"global-jsdom": "25.0.0",
"globals": "15.12.0",
"html-webpack-plugin": "5.6.3",
"jsdom": "25.0.1",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"serve": "14.2.4",
"web-ext": "8.3.0",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"overrides": {
"path-to-regexp": "8.2.0"
},
"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:format && npm run test:node",
"test:lint": "eslint .",
"test:format": "prettier --check .",
"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"
}