-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.12 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
{
"name": "senaev.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"docker": "npm run docker:build && npm run docker:upgrade",
"docker:build": "docker build --platform linux/amd64 -t senaev.com . && docker tag senaev.com cr.yandex/crpnkh51pjbnliqhuqml/senaev.com:latest && docker push cr.yandex/crpnkh51pjbnliqhuqml/senaev.com:latest",
"docker:upgrade": "ssh -t [email protected] 'sudo docker stop $(sudo docker ps -q --filter ancestor=cr.yandex/crpnkh51pjbnliqhuqml/senaev.com:latest) && sudo docker pull cr.yandex/crpnkh51pjbnliqhuqml/senaev.com:latest && sudo docker run -dp 80:3000 -v /mnt/content-storage/webdav/data/notes-folder:/app/notes-folder cr.yandex/crpnkh51pjbnliqhuqml/senaev.com:latest'",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@next/eslint-plugin-next": "15.0.1",
"@types/is-number": "7.0.5",
"@types/jest": "29.5.1",
"@types/jquery": "3.5.16",
"@types/jquery.transit": "0.9.31",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"clsx": "1.2.1",
"github-slugger": "2.0.0",
"gray-matter": "4.0.3",
"highlight.js": "11.10.0",
"is-number": "7.0.0",
"jquery": "3.6.4",
"jquery.transit": "0.9.12",
"marked": "14.1.3",
"marked-highlight": "2.2.0",
"next": "15.0.1",
"path-exists": "5.0.0",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"remove-markdown": "0.5.5",
"sass": "1.58.0",
"yaml": "2.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"eslint": "8.56.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"typescript": "5.3.3"
}
}