-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.9 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
{
"name": "medusajs-playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.16.0"
},
"scripts": {
"test": "docker compose --profile playwright up --build --force-recreate --renew-anon-volumes",
"report": "npx playwright show-report",
"metal:test": "npx playwright test",
"metal:ui": "npx playwright test --ui",
"metal:debug": "npx playwright test --debug",
"services:start": "docker compose up --build --force-recreate --renew-anon-volumes",
"services:stop": "docker compose --profile playwright stop",
"services:remove": "docker compose --profile playwright down -v",
"docker:build": "docker build -t medusajs-playwright .",
"docker:stop": "docker stop medusajs-playwright",
"docker:remove": "docker rm medusajs-playwright",
"docker:system:prune": "docker system prune --force",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmflaherty/medusajs-playwright.git"
},
"author": "Juan M. Flaherty",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmflaherty/medusajs-playwright/issues"
},
"homepage": "https://github.com/jmflaherty/medusajs-playwright#readme",
"devDependencies": {
"@ngneat/falso": "^6.4.0",
"@playwright/test": "^1.34.3",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"builder-pattern": "^2.2.0",
"dotenv": "^16.1.4",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"yarn": "^1.22.19"
}
}