-
Notifications
You must be signed in to change notification settings - Fork 595
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "playwright-tests",
"private": true,
"version": "1.0.0",
"description": "Ember-simple-auth e2e tests",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test:e2e": "PUBLIC_MSW_ENABLED=true playwright test",
"test:visual": "PUBLIC_MSW_ENABLED=true playwright test",
"lint": "prettier --check . && ESLINT_USE_FLAT_CONFIG=true eslint .",
"lint:fix": "prettier --write . && ESLINT_USE_FLAT_CONFIG=true eslint . --fix",
"test:e2e:firefox": "pnpm test:e2e --project=firefox",
"test:e2e:chromium": "pnpm test:e2e --project=chromium"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "1.57.0",
"@types/node": "24.10.9",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"dotenv": "17.2.3",
"dotenv-expand": "12.0.3",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"msw": "2.12.7",
"playwright": "1.57.0",
"playwright-msw": "3.0.1",
"prettier": "3.6.2"
}
}