forked from neonwatty/meme-search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.25 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
{
"name": "meme-search",
"version": "2.0.2",
"description": "Use AI to index your memes by their content and text, making them easily retrievable for your meme warfare pleasures.",
"main": "index.js",
"scripts": {
"test": "bash scripts/run_all_ci_tests.sh",
"test:ci": "bash scripts/run_all_ci_tests.sh",
"test:ci:skip-e2e": "bash scripts/run_all_ci_tests.sh --skip-e2e",
"test:ci:verbose": "bash scripts/run_all_ci_tests.sh --verbose",
"test:rails": "bash scripts/run_all_ci_tests.sh --skip-python --skip-e2e",
"test:python": "bash scripts/run_all_ci_tests.sh --skip-rails --skip-e2e",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"test:e2e:docker": "bash -c 'trap \"AUTO_CLEANUP=true npm run test:e2e:docker:teardown\" EXIT; bash playwright-docker/scripts/docker-e2e-setup.sh && npm run test:e2e:docker:run'",
"test:e2e:docker:setup": "bash playwright-docker/scripts/docker-e2e-setup.sh",
"test:e2e:docker:run": "playwright test --config=playwright-docker/config/playwright.config.docker.ts",
"test:e2e:docker:teardown": "bash playwright-docker/scripts/docker-e2e-teardown.sh",
"test:e2e:docker:ui": "playwright test --config=playwright-docker/config/playwright.config.docker.ts --ui",
"test:e2e:docker:headed": "playwright test --config=playwright-docker/config/playwright.config.docker.ts --headed",
"test:e2e:docker:debug": "playwright test --config=playwright-docker/config/playwright.config.docker.ts --debug",
"test:e2e:docker:report": "playwright show-report playwright-docker/playwright-report-docker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neonwatty/meme-search.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neonwatty/meme-search/issues"
},
"homepage": "https://github.com/neonwatty/meme-search#readme",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^24.10.0",
"axios": "^1.13.1",
"dotenv": "^17.2.3",
"typescript": "^5.9.3"
}
}