Bug 1946184 - Fix computing the CSD margin right after calling HideWindowChrome(...
[gecko.git] / devtools / client / debugger / package.json
blobf0fda46b140177edf698e10a18d356d4657e334b
2   "license": "MPL-2.0",
3   "repository": {
4     "url": "git://github.com/firefox-devtools/debugger.git",
5     "type": "git"
6   },
7   "bugs": {
8     "url": "https://github.com/firefox-devtools/debugger/issues"
9   },
10   "homepage": "https://github.com/firefox-devtools/debugger#readme",
11   "engineStrict": true,
12   "scripts": {
13     "license-check": "devtools-license-check",
14     "links": "ls -l node_modules/ | grep ^l || echo 'no linked packages'",
15     "test": "TZ=Africa/Nairobi jest",
16     "test-ci": "TZ=Africa/Nairobi jest --json",
17     "test:watch": "jest --watch",
18     "test:coverage": "yarn test --coverage",
19     "test:all": "yarn test",
20     "watch": "node bin/watch"
21   },
22   "dependencies": {
23     "acorn": "~8.8.2",
24     "react": "16.8.6",
25     "react-dom": "16.8.6",
26     "react-redux": "^5.0.7",
27     "reselect": "4.1.5",
28     "source-map": "0.7.4",
29     "wasmparser": "^3.1.1"
30   },
31   "private": true,
32   "workspaces": [
33     "packages/*"
34   ],
35   "files": [
36     "src",
37     "assets"
38   ],
39   "greenkeeper": {
40     "ignore": [
41       "react",
42       "react-dom",
43       "react-redux",
44       "redux",
45       "codemirror"
46     ]
47   },
48   "main": "src/main.js",
49   "author": "Jason Laster <jlaster@mozilla.com>",
50   "devDependencies": {
51     "@babel/core": "^7.23.2",
52     "@babel/parser": "^7.23.0",
53     "@babel/plugin-proposal-class-properties": "^7.18.6",
54     "@babel/plugin-proposal-class-static-block": "^7.21.0",
55     "@babel/plugin-proposal-explicit-resource-management": "^7.25.9",
56     "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
57     "@babel/plugin-proposal-optional-chaining": "^7.21.0",
58     "@babel/plugin-proposal-private-methods": "^7.18.6",
59     "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
60     "@babel/plugin-proposal-unicode-sets-regex": "^7.18.6",
61     "@babel/plugin-transform-class-properties": "^7.22.5",
62     "@babel/plugin-transform-class-static-block": "^7.22.11",
63     "@babel/plugin-transform-modules-commonjs": "^7.23.0",
64     "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
65     "@babel/plugin-transform-optional-chaining": "^7.23.0",
66     "@babel/plugin-transform-private-methods": "^7.22.5",
67     "@babel/plugin-transform-private-property-in-object": "^7.22.11",
68     "@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
69     "@babel/preset-env": "^7.15.6",
70     "@babel/preset-react": "7.14.5",
71     "@babel/register": "^7.15.3",
72     "@babel/types": "^7.23.0",
73     "@rollup/plugin-commonjs": "^24.0.1",
74     "@rollup/plugin-node-resolve": "^15.0.1",
75     "babel-jest": "^23.0.0",
76     "babel-loader": "^8.2.5",
77     "babel-plugin-dynamic-import-node": "^2.3.3",
78     "babel-plugin-module-resolver": "^4.1.0",
79     "babel-plugin-transform-amd-to-commonjs": "1.4.0",
80     "enzyme": "^3.10.0",
81     "enzyme-adapter-react-16": "^1.14.0",
82     "enzyme-to-json": "3.3.5",
83     "jest": "^27.2.1",
84     "jest-environment-jsdom": "^27.2.0",
85     "jest-in-case": "^1.0.2",
86     "jest-junit": "^6.0.0",
87     "jest-localstorage-mock": "^2.4.17",
88     "jest-serializer-babel-ast": "^0.0.5",
89     "prettier": "2.8.8",
90     "redux": "^4.0.5",
91     "redux-mock-store": "^1.5.4",
92     "rollup": "3.20.2",
93     "rollup-plugin-inject-process-env": "^1.3.1",
94     "rollup-plugin-node-polyfills": "^0.2.1",
95     "workerjs": "github:jasonLaster/workerjs#1944c8b753cc9e84b6ed0cb2fbcaa25600706446"
96   },
97   "resolutions": {
98     "//": "Fix workerjs babel core dependency until we figure out a good solution",
99     "workerjs/@babel/core": "^7.23.2",
100     "workerjs/@babel/register": "^7.15.3"
101   }