-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "badgical",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "tsc -p tsconfig.json --noEmit && eslint . && prettier . --check && next build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,html,json,md,yml,yaml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"lucide-react": "0.554.0",
"next": "^16.2.9",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"complete-lint": "5.11.0",
"eslint": "10.4.0",
"eslint-config-complete": "4.7.2",
"eslint-import-resolver-typescript": "4.4.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "3.8.3",
"typescript": "6.0.3"
},
"packageManager": "bun@1.3.9"
}