-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.49 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.49 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
{
"name": "easybin",
"version": "1.0.0",
"description": "Smart waste sorting application",
"main": "index.html",
"scripts": {
"test": "jest --testPathIgnorePatterns='.*\\.spec\\.js$'",
"test:watch": "jest --watch --testPathIgnorePatterns='.*\\.spec\\.js$'",
"test:e2e": "playwright test tests/e2e.spec.js",
"test:ai": "playwright test tests/ai-integration.spec.js --workers=1",
"test:coverage": "jest --coverage --testPathIgnorePatterns='.*\\.spec\\.js$'",
"test:all": "npm run test && npm run test:e2e && npm run test:ai",
"serve": "npx serve -s . -p 5050",
"dev": "npx live-server --port=5050",
"start": "node tools/server.js",
"dev:cors": "node tools/server.js",
"vision:list:openrouter": "node tools/vision-api-tester.js list openrouter",
"vision:list:gemini": "node tools/vision-api-tester.js list gemini",
"vision:test:openrouter": "node tools/vision-api-tester.js test openrouter",
"vision:test:gemini": "node tools/vision-api-tester.js test gemini",
"vision:speed:gemini": "node tools/vision-api-tester.js speed gemini"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^4.18.2"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@testing-library/jest-dom": "^6.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.54.1",
"tailwindcss": "^4.1.17"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
}
}