-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
61
62
63
{
"name": "readingtown",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo \"No tests yet\"",
"quality:check": "npm run lint && npm run format:check && npm run build",
"quality:fix": "npm run format && npm run lint --fix",
"analyze:unused": "knip",
"analyze:deps": "madge --image dependency-graph.svg src/",
"analyze:circular": "madge --circular src/",
"analyze:bundle": "cross-env ANALYZE=true next build",
"analyze:all": "npm run analyze:unused && npm run analyze:circular",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.85.3",
"@types/lodash": "^4.17.20",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.3",
"browser-image-compression": "^2.0.2",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"next": "15.4.5",
"postcss": "^8.5.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^16.0.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^10.1.0",
"dependency-cruiser": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"husky": "^9.1.7",
"knip": "^5.69.1",
"lint-staged": "^16.1.5",
"madge": "^8.0.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"ts-unused-exports": "^11.0.1",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}