-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "pinoy-ppc-academy",
"version": "0.8.0",
"private": true,
"description": "Pinoy PPC Academy - career-first Amazon PPC training with persistent accounts, progress, and deterministic assessments.",
"license": "MIT",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run --maxWorkers=4",
"test:coverage": "vitest run --coverage --maxWorkers=4",
"test:e2e": "playwright test",
"guard:no-ai": "node scripts/check-no-ai.mjs",
"guard:content": "node scripts/check-content-trust.mjs",
"verify": "npm run guard:no-ai && npm run guard:content && npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"next": "16.2.10",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-next": "16.2.10",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}