-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.85 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
{
"name": "bugsnag-js-performance",
"private": true,
"workspaces": [
"packages/*",
"packages/platforms/*"
],
"scripts": {
"build": "lerna run --stream build",
"build:cdn": "lerna run --stream build:cdn",
"cdn-upload": "./bin/cdn-upload",
"clean": "rm -f build/* && lerna run --stream --parallel clean",
"test:lint": "eslint --max-warnings=0 .",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:test-container-registry-login": "aws ecr get-login-password --profile=opensource --region=us-west-1 | docker login --username AWS --password-stdin 855461928731.dkr.ecr.us-west-1.amazonaws.com"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.360.0",
"@aws-sdk/client-s3": "^3.360.0",
"@babel/plugin-transform-private-methods": "^7.24.7",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"coverage-diff": "^3.2.0",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-preset-angular": "^14.1.1",
"lerna": "^8.1.8",
"metro-react-native-babel-preset": "^0.77.0",
"rollup": "^3.23.0",
"semver": "^7.5.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"overrides": {
"react": "18.2.0",
"react-test-renderer": "18.2.0"
}
}