-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
{
"name": "teetangart",
"private": true,
"version": "2.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"showcase:grid": "node scripts/combine-showcase-grid.mjs"
},
"dependencies": {
"@fontsource/dm-sans": "^5.2.8",
"@fontsource/dm-serif-display": "^5.2.8",
"@fontsource/libre-baskerville": "^5.2.10",
"lucide-react": "^1.16.0",
"maplibre-gl": "^5.24.0",
"pmtiles": "^4.4.1",
"qrcode": "^1.5.4",
"react": "^19.2.6",
"react-colorful": "^5.7.0",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"react-router-dom": "^7.15.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fontsource/bebas-neue": "^5.2.7",
"@fontsource/lato": "^5.2.7",
"@fontsource/merriweather": "^5.2.11",
"@fontsource/montserrat": "^5.2.8",
"@fontsource/noto-sans-jp": "^5.2.9",
"@fontsource/oswald": "^5.2.8",
"@fontsource/playfair-display": "^5.2.8",
"@fontsource/raleway": "^5.2.8",
"@fontsource/source-sans-pro": "^5.2.5",
"@rolldown/plugin-babel": "^0.2.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"sharp": "^0.34.5",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14"
}
}