-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 897 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "ipfs_kit_py-e2e",
"private": true,
"version": "0.1.0",
"description": "Playwright E2E tests for the consolidated MCP dashboard",
"scripts": {
"e2e": "node node_modules/@playwright/test/cli.js test --config=playwright_tests/playwright.config.js",
"e2e:headed": "node node_modules/@playwright/test/cli.js test --headed --config=playwright_tests/playwright.config.js",
"e2e:report": "node node_modules/@playwright/test/cli.js show-report",
"build:css": "tailwindcss -i ./src/css/input.css -o ./static/css/tailwind.css --minify",
"build:css:dev": "tailwindcss -i ./src/css/input.css -o ./static/css/tailwind.css",
"watch:css": "tailwindcss -i ./src/css/input.css -o ./static/css/tailwind.css --watch"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0"
}
}