-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.19 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
{
"name": "unsplash-demo",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"add:github": "git remote add github [email protected]:orbanszlrd/unsplash-demo.git",
"add:gitlab": "git remote add gitlab [email protected]:orbanszlrd/unsplash-demo.git",
"add:bitbucket": "git remote add bitbucket [email protected]:orbanszlrd/unsplash-demo.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": {
"next": "^14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.16.7",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"typescript": "~5.5.4"
}
}