-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "zoomroa.st",
"version": "1.3.1",
"description": "app to generate zoomroast memes",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "rm -rf out && next export",
"deploy": "scp -i ~/.ssh/id_rsa -r out/* [email protected]:/var/www/zoomroa.st"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasrstorey/zoomroa.st.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thomasrstorey/zoomroa.st/issues"
},
"homepage": "https://github.com/thomasrstorey/zoomroa.st#readme",
"dependencies": {
"@types/react": "^17.0.38",
"konva": "^8.3.1",
"next": "^12.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-konva": "^17.0.2-5",
"typescript": "^4.5.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"eslint-plugin-react": "^7.28.0"
}
}