-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 952 Bytes
/
package.json
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
{
"name": "portfolio",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r build",
"typecheck": "tsc --build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"cleanup": "pnpm lint --fix && pnpm prettier"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"prettier": "3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}