forked from Emmanuel-Rods/SnapBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.62 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
{
"name": "snapbot",
"version": "1.0.0",
"description": "A bot that automates snapchat ",
"main": "index.js",
"devDependencies": {
"supabase": "^2.53.6",
"supertest": "^6.3.4"
},
"type": "module",
"scripts": {
"bot": "node index.js",
"migrate": "node scripts/migrate.js",
"db:health": "node scripts/dbHealth.js",
"api": "node api/server.js",
"test:repo": "node scripts/repoSmoke.js",
"api:smoke": "node scripts/apiSmoke.js",
"test:api": "set TEST_MODE=1&& node --test tests/api.spec.js",
"test:ui": "set TEST_MODE=1&& node --test tests/ui.screenshot.test.js",
"test:security": "set TEST_MODE=1&& node --test tests/security.spec.js",
"test:performance": "node --test tests/performance.spec.js",
"test:integration": "node --test tests/integration.spec.js",
"test:workflow": "node --test tests/workflow.spec.js",
"test:system": "set TEST_MODE=1&& node --test tests/system.spec.js",
"test:efficiency": "node --test tests/efficiency.spec.js",
"test:snapchat": "node --test tests/real_snapchat.spec.js",
"test:all": "npm run test:security && npm run test:system && npm run test:api && npm run test:ui && npm run test:performance && npm run test:integration && npm run test:workflow && npm run test:efficiency",
"test": "npm run test:api && npm run test:ui"
},
"author": "Roger Rodrigues",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.5",
"pino": "^9.0.0",
"puppeteer": "^24.1.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"license": "ISC"
}