-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "exifoo-website",
"version": "0.1.0-alpha",
"description": "The website of exifoo, a tool to organize your photos.",
"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",
"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": {
"@supabase/supabase-js": "^2.47.12",
"flowbite-react": "^0.10.2",
"framer-motion": "^11.15.0",
"next": "15.0.3",
"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"
},
"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"
}
}