-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 766 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 766 Bytes
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
{
"name": "georgs.me",
"version": "1.0.0",
"description": "georg.me personal website",
"repository": "https://github.com/GeorgS/georgs.github.io.git",
"author": "<georg.schelkshorn@touchlay.com>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && rimraf out && next build && next export && touch out/.nojekyll && touch out/CNAME && echo \"georgs.me\" >> out/CNAME && gh-pages -d out -t true"
},
"dependencies": {
"@react-hook/media-query": "^1.1.1",
"next": "^11.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-spring": "^8.0.27"
},
"devDependencies": {
"gh-pages": "^3.1.0"
}
}