-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "next-google-photos",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"add:github": "git remote add github [email protected]:orbanszlrd/next-google-photos.git",
"add:gitlab": "git remote add gitlab [email protected]:orbanszlrd/next-google-photos.git",
"add:bitbucket": "git remote add bitbucket [email protected]:orbanszlrd/next-google-photos.git",
"merge": "git checkout main && git merge development && git checkout development",
"push": "npm run merge && npm run push:all && npm run push:tags",
"push:all": "git push --all && git push --all github && git push --all gitlab && git push --all bitbucket",
"push:tags": "git push --tags && git push --tags github && git push --tags gitlab && git push --tags bitbucket"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"date-fns": "^4.1.0",
"justified-layout": "^4.1.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@types/justified-layout": "^4.1.4",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.6",
"sass": "^1.83.4",
"typescript": "~5.7.3"
}
}