forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 3.72 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
{
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-computed-properties": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-member-expression-literals": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.4",
"@babel/plugin-transform-property-literals": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@types/react": "^16.9.23",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-jest": "^25.1.0",
"babel-preset-react-native": "^4.0.1",
"babelify": "^10.0.0",
"browser-pack-flat": "^3.2.0",
"browserify": "^16.2.2",
"browserify-versionify": "^1.0.6",
"envify": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-with-typescript": "^13.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"exorcist": "^1.0.1",
"jest": "^25.1.0",
"lerna": "^3.19.0",
"metro-react-native-babel-preset": "^0.58.0",
"ncp": "^2.0.0",
"node-fetch": "^2.6.0",
"proxyquire": "^2.1.3",
"react": "^16.13.1",
"react-native": "^0.61.5",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.0",
"timekeeper": "^2.2.0",
"typescript": "^3.7.5",
"uglify-js": "^3.4.9"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --scope '@bugsnag/node' --scope '@bugsnag/browser' --scope '@bugsnag/expo' && lerna run build --ignore '@bugsnag/node' --ignore '@bugsnag/browser' --ignore '@bugsnag/expo'",
"test:lint": "eslint --ext .ts,.js --report-unused-disable-directives --max-warnings=0 .",
"test:unit": "jest && lerna run test --ignore '@bugsnag/browser' --ignore '@bugsnag/node'",
"test:types": "tsc -p tsconfig.json && lerna run test:types",
"test:test-container-registry-login": "$(aws ecr get-login --profile=opensource --no-include-email)",
"test:build-browser-container": "docker-compose up --build minimal-packager && docker-compose build --pull browser-maze-runner",
"test:build-node-container": "docker-compose up --build minimal-packager && docker-compose build --pull node-maze-runner",
"test:build-expo-android-container": "test/expo/scripts/build-android-locally.sh",
"test:build-expo-ios-container": "EXPO_RELEASE_CHANNEL=localtest test/expo/scripts/build-ios-locally.sh",
"test:browser": "npm run test:build-browser-container && docker-compose run --use-aliases browser-maze-runner",
"test:node": "npm run test:build-node-container && docker-compose run --use-aliases node-maze-runner",
"test:expo:android": "npm run test:build-expo-android-container && APP_LOCATION=build/output.apk docker-compose run --use-aliases expo-maze-runner",
"test:expo:ios": "npm run test:build-expo-ios-container && APP_LOCATION=build/output.ipa docker-compose run --use-aliases expo-maze-runner"
}
}