-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "movie-nextjs-appwrite",
"version": "0.1.0",
"description": "A web app that users can search for their favorite movies and add them to their personal watchlist",
"author": "Tim DeHof",
"license": "MIT",
"homepage": "https://reelwatch.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/timDeHof/movie-nextjs-app.git"
},
"bugs": {
"url": "https://github.com/timDeHof/movie-nextjs-app/issues"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore ./src/*",
"format:fix": "prettier --write --ignore-path .gitignore ./src/*"
},
"dependencies": {
"@expo/next-adapter": "^6.0.0",
"@next/eslint-plugin-next": "^14.2.2",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"appwrite": "^13.0.2",
"autoprefixer": "10.4.19",
"axios": "^1.6.8",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-plugin-tailwindcss": "^3.15.1",
"expo": "^50.0.17",
"jotai": "^2.7.1",
"next": "14.1.4",
"postcss": "8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.4.1",
"typescript": "5.4.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/uuid": "^9.0.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12"
}
}