-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "mohsin-hayat-site",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": "24.x"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit --project jsconfig.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:coverage": "yarn test --coverage",
"test:e2e": "playwright test",
"test:a11y": "playwright test --grep accessibility",
"lighthouse": "lhci autorun",
"verify": "yarn lint && yarn format:check && yarn typecheck && yarn test && yarn build"
},
"dependencies": {
"next": "16.3.2",
"nextra": "4.6.1",
"nextra-theme-blog": "4.6.1",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@next/eslint-plugin-next": "^16.3.2",
"@playwright/test": "^1.62.1",
"eslint": "^10.8.1",
"jest": "30.4.2",
"prettier": "^3.9.6",
"typescript": "6.0.3"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"semi": false
}
}