-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.7 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
{
"name": "123-abc-pro",
"version": "1.0.0",
"private": true,
"description": "Bilingual English alphabet and early phonics activities for young learners",
"author": "CharlieLZ",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/CharlieLZ/123-abc.pro.git"
},
"homepage": "https://123-abc.pro",
"bugs": {
"url": "https://github.com/CharlieLZ/123-abc.pro/issues"
},
"keywords": [
"alphabet",
"phonics",
"bilingual-learning",
"early-education",
"nextjs",
"cloudflare-pages"
],
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build && node scripts/deduplicate-build.mjs out",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"audit:dependencies": "npm audit --registry=https://registry.npmjs.org --audit-level=moderate",
"verify:assets": "node scripts/verify-static-assets.mjs public",
"verify:export": "node scripts/verify-static-assets.mjs out",
"test": "node --test tests/unit/*.test.mjs",
"test:integration": "node --test tests/integration/*.test.mjs",
"test:e2e": "playwright test",
"check": "npm run lint && npm run typecheck && npm run verify:assets && npm run test && npm run build && npm run test:integration && npm run verify:export"
},
"dependencies": {
"next": "16.2.11",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.11",
"typescript": "^5"
},
"overrides": {
"next": {
"postcss": "8.5.10",
"sharp": "0.35.3"
}
}
}