-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.96 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.96 KB
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
{
"name": "fx-private-relay",
"description": "Firefox Relay provides generated email addresses to use in place of personal email addresses.",
"version": "1.0.0",
"author": "Mozilla",
"bugs": {
"url": "https://github.com/mozilla/fx-private-relay/issues"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"dotenv": "^17.3.1"
},
"volta": {
"node": "22.15.0",
"npm": "10.9.2"
},
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/fx-private-relay.git"
},
"workspaces": [
"frontend"
],
"scripts": {
"test:e2e": "playwright test --retries=2",
"test:local": "E2E_TEST_ENV=local playwright test",
"test:dev": "E2E_TEST_ENV=dev playwright test --retries=2",
"test:stage": "E2E_TEST_ENV=stage playwright test --retries=2",
"test:prod": "E2E_TEST_ENV=prod playwright test --retries=2",
"test:relay-only": "playwright test --project=relay-only-* --retries=2",
"test:relay-only:local": "E2E_TEST_ENV=local playwright test --project=relay-only-*",
"test:relay-only:dev": "E2E_TEST_ENV=dev playwright test --project=relay-only-* --retries=2",
"test:relay-only:stage": "E2E_TEST_ENV=stage playwright test --project=relay-only-* --retries=2",
"test:relay-only:prod": "E2E_TEST_ENV=prod playwright test --project=relay-only-* --retries=2",
"test:full": "playwright test --project=full-* --retries=2",
"test:full:local": "E2E_TEST_ENV=local playwright test --project=full-*",
"test:full:dev": "E2E_TEST_ENV=dev playwright test --project=full-* --retries=2",
"test:full:stage": "E2E_TEST_ENV=stage playwright test --project=full-* --retries=2",
"test:full:prod": "E2E_TEST_ENV=prod playwright test --project=full-* --retries=2",
"prepare": "husky"
},
"overrides": {
"js-yaml": "^4.1.1",
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.1.1"
}
},
"homepage": "https://github.com/mozilla/fx-private-relay#readme"
}