-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.08 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": "thunderbirdconversations",
"version": "0.0.1",
"description": "Thunderbird Conversations",
"repository": {
"type": "git",
"url": "[email protected]:thunderbird-conversations/thunderbird-conversations.git"
},
"bugs": {
"url": "https://github.com/thunderbird-conversations/thunderbird-conversations/issues"
},
"engines": {
"thunderbird": ">=78.0a1"
},
"jest": {
"transform": {
"\\.[jt]sx?$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
]
},
"private": true,
"type": "module",
"dependencies": {
"@reduxjs/toolkit": "1.6.1",
"pdfjs-dist": "2.8.335",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.4",
"redux": "4.1.0"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/preset-env": "7.14.8",
"@babel/preset-react": "7.14.5",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.3",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"enzyme": "3.11.0",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-fetch-options": "0.0.5",
"eslint-plugin-html": "6.1.2",
"eslint-plugin-jsdoc": "35.5.1",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-mozilla": "2.10.0",
"eslint-plugin-no-unsanitized": "3.1.5",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"html-webpack-plugin": "5.3.2",
"jest": "27.0.6",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"prop-types": "15.7.2",
"react-test-renderer": "17.0.2",
"serve": "12.0.0",
"webpack": "5.46.0",
"webpack-cli": "4.7.2"
},
"scripts": {
"dev": "(scripts/build-dev-html.sh --watch &) && sleep 4 && scripts/dev-html-serve.sh",
"build": "./scripts/build.sh",
"prod": "./scripts/build.sh --prod",
"test": "npm-run-all test:*",
"test:lint": "eslint --ext cjs,mjs,js,jsx,json .",
"test:jest": "jest ./addon/tests/",
"preversion": "npm ci && npm test",
"version": "scripts/update-version.sh",
"postversion": "npm run prod"
},
"license": "MPL-2.0"
}