-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
131 lines (131 loc) · 4.7 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "pontoon-addon",
"version": "4.13.1",
"private": true,
"description": "Tools for Pontoon and its integration into the browser.",
"author": "Michal Stanke",
"license": "BSD-3-Clause",
"homepage": "https://github.com/MikkCZ/pontoon-addon#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MikkCZ/pontoon-addon.git"
},
"bugs": {
"url": "https://github.com/MikkCZ/pontoon-addon/issues"
},
"scripts": {
"clean-install": "npm ci",
"postinstall": "run-p *:clean",
"build": "npm-run-all build:clean --parallel *:check --parallel webpack:build:*",
"test": "run-s test:clean jest:run",
"build:clean": "rimraf ./dist",
"test:clean": "rimraf ./coverage",
"tsc:check": "tsc --noEmit --project ./configs/tsconfig.json",
"eslint:check": "eslint --config ./configs/.eslintrc.js ./src",
"eslint:fix": "eslint --config ./configs/.eslintrc.js --fix ./src",
"ts-prune:check": "ts-prune --error --ignore '/(__mocks__|generated)/' --project ./configs/tsconfig.json",
"webpack:build:mozilla": "cross-env TARGET_BROWSER=mozilla webpack --config ./configs/webpack.config.ts",
"webpack:build:chromium": "cross-env TARGET_BROWSER=chromium webpack --config ./configs/webpack.config.ts",
"webpack:watch:mozilla": "cross-env MODE=development TARGET_BROWSER=mozilla webpack --config ./configs/webpack.config.ts --watch",
"webpack:watch:chromium": "cross-env MODE=development TARGET_BROWSER=chromium webpack --config ./configs/webpack.config.ts --watch",
"jest:run": "jest --ci --config ./configs/jest.config.ts",
"watch": "npm-run-all build:clean --parallel webpack:watch:*",
"graphql:generate": "graphql-codegen --config ./configs/codegen.yml"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"dompurify": "^3.2.2",
"graphql": "^16.9.0",
"html-react-parser": "^5.1.18",
"javascript-time-ago": "^2.5.11",
"marked": "^15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-game-snake": "^1.0.4",
"react-linkify": "^0.2.2",
"react-time-ago": "^7.3.3",
"urijs": "^1.19.11",
"uuid": "^11.0.3",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@emotion/eslint-plugin": "^11.12.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@tsconfig/recommended": "^1.0.8",
"@types/dompurify": "^3.2.0",
"@types/eslint": "^8.56.12",
"@types/generate-json-webpack-plugin": "^0.3.7",
"@types/javascript-time-ago": "^2.0.8",
"@types/jest": "^28.1.8",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/urijs": "^1.19.25",
"@types/webextension-polyfill": "^0.12.1",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^7.0.0",
"flush-promises": "^1.0.2",
"generate-json-webpack-plugin": "^2.0.0",
"graphql-request": "^6.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.9.2",
"mockzilla": "^0.14.0",
"mockzilla-webextension": "^0.15.0",
"npm-run-all": "^4.1.5",
"package-json-type": "^1.0.3",
"postcss-styled-syntax": "^0.7.0",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"striptags": "^3.2.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "~5.5",
"web-ext-plugin": "^2.11.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"overrides": {
"mockzilla-webextension": {
"webextension-polyfill": "^0.12.0"
}
},
"engines": {
"node": "^22",
"npm": ">= 10",
"yarn": "NO LONGER USED - Please use npm"
},
"engineStrict": true,
"browserslist": [
"Firefox >= 102.0",
"Chrome >= 104"
]
}