-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.43 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sparsetree",
"version": "0.9.0",
"private": true,
"description": "",
"main": "index.js",
"type": "module",
"workspaces": [
"shared",
"server",
"client"
],
"scripts": {
"dev": "node scripts/dev-start.js",
"dev:stop": "node ./node_modules/pm2/bin/pm2 stop ecosystem.config.cjs",
"build": "npm run build -w shared && npm run build -w server && npm run build -w client",
"install:all": "npm install && npm install -w shared && npm install -w server && npm install -w client",
"start": "npm run build && node ./node_modules/pm2/bin/pm2 delete ecosystem.config.cjs --silent; node ./node_modules/pm2/bin/pm2 start ecosystem.config.cjs",
"pm2:start": "node ./node_modules/pm2/bin/pm2 start ecosystem.config.cjs",
"pm2:stop": "node ./node_modules/pm2/bin/pm2 stop ecosystem.config.cjs",
"pm2:restart": "node ./node_modules/pm2/bin/pm2 restart ecosystem.config.cjs",
"pm2:logs": "node ./node_modules/pm2/bin/pm2 logs",
"pm2:status": "node ./node_modules/pm2/bin/pm2 status",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:scraper": "playwright test --config playwright.scraper.config.ts",
"test:e2e": "playwright test tests/e2e",
"test:ci": "vitest run --coverage",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage && npx tsx scripts/generate-code-coverage-report.ts",
"test:feature-coverage": "npx tsx scripts/generate-feature-coverage-report.ts",
"test:all-reports": "npm run test:coverage && npm run test:feature-coverage",
"validate:mocks": "npx tsx scripts/validate-mock-selectors.ts",
"migrate": "npx tsx scripts/migrate.ts",
"migrate:status": "npx tsx scripts/migrate.ts --status",
"migrate:dry-run": "npx tsx scripts/migrate.ts --dry-run"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.6.2",
"fs-js-lite": "^2.6.6",
"lodash.sample": "^4.2.1",
"yargs": "^18.0.0"
},
"overrides": {
"fs-js-lite": {
"request": {
"form-data": "^2.5.4",
"qs": "^6.14.1",
"tough-cookie": "^5.1.2"
}
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.1.2",
"happy-dom": "^20.7.0",
"msw": "^2.12.10",
"pm2": "^6.0.14",
"supertest": "^7.2.2",
"vitest": "^4.0.18"
}
}