-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "exifoo-website",
"version": "0.12.2",
"description": "The website of exifoo, a tool to organize your photos and videos.",
"author": {
"name": "Andrin Schaller",
"url": "https://github.com/codeofandrin"
},
"license": "SEE LICENSE FILE",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write --list-different .",
"typecheck": "tsc --noEmit --composite false",
"check": "npm run format && npm run typecheck",
"bump": "npm version -m 'Bump version to %s' $npm_config_vers",
"bump:dev": "npm version $npm_config_vers --git-tag-version false && git commit -a -m 'Bump version to development'"
},
"dependencies": {
"@next/third-parties": "^15.2.3",
"@supabase/supabase-js": "^2.47.12",
"@vercel/speed-insights": "^1.2.0",
"flowbite-react": "^0.10.2",
"framer-motion": "^11.15.0",
"next": "^15.5.14",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"raw-loader": "^4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/webpack-env": "^1.18.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}